import { SeoType } from '@/database/baseTypes'; export namespace CareersInterface { export interface Post { buttonUrl: string; description: string; id: number; location: string; order: number; parentId: number; preview: string; previewText: string; seo: SeoType; slug: string; title: string; label: string; } export interface PostPreview { title: string; previewText: string; slug: string; label: string; } }