export declare class CreatePageDto {
    project_id: string;
    title: string;
    slug: string;
    description?: string;
    meta_title?: string;
    meta_description?: string;
    meta_keywords?: string;
    og_image?: string;
    is_homepage?: boolean;
    draft_components?: any[];
    draft_settings?: any;
    position?: number;
    status?: 'draft' | 'published' | 'archived';
}
