export type Page = {
    id?: string;
    name: string;
    slug: string;
    type?: string;
    content_html?: string;
    content_text?: string;
    language: string;
    documents?: string;
    content_structure: string;
    event: string;
    dynamic: number;
    auto_created: number;
    tags: string[];
    setting: PageSetting;
    created_at: string;
    updated_at: string;
    updated_by: string;
    published: boolean;
};
export interface PageSetting {
    name: string;
    subject: string;
}
export type PageInput = {
    name: string;
    language: string[];
    type?: string;
    content_html?: string;
    documents?: string;
    content_structure?: string;
    event?: string;
    dynamic?: boolean;
    tags?: string[];
    setting?: PageSetting;
    content_text?: string;
    published?: boolean;
};
