export declare class CreateCampaignDto {
    title: string;
    slug?: string;
    description?: string;
    banner_url?: string;
    vote_price: number;
    min_votes?: number;
    max_votes?: number;
    starts_at?: string;
    ends_at?: string;
    show_vote_count?: boolean;
    show_leaderboard?: boolean;
}
