import type Footer from "../component/footer"; import type Navbar from "../component/navbar"; export default interface Global { id: number; documentId: string; createdAt: string; updatedAt: string; publishedAt: string; locale: string; navbar: Navbar; footer: Footer; }