export declare class UpdatePageDto {
    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;
    status?: 'draft' | 'published' | 'archived';
    position?: number;
    draft_updated_at?: Date;
    has_unpublished_changes?: boolean;
    published_components?: any;
    published_settings?: any;
}
