export declare class CreatePostDto {
    channelId: string;
    title: string;
    excerpt?: string;
    body?: string;
    cover?: string;
    status?: 'DRAFT' | 'PUBLISHED';
    variant?: 'FULL' | 'SHORT';
}
export declare class UpdatePostDto {
    channelId?: string;
    title?: string;
    excerpt?: string;
    body?: string;
    cover?: string;
    status?: 'DRAFT' | 'PUBLISHED';
    variant?: 'FULL' | 'SHORT';
}
