export declare class Plan {
    id: string;
    name: string;
    slug: string;
    description: string;
    price_monthly: number;
    price_yearly: number;
    max_campaigns: number;
    max_contestants_per_campaign: number;
    max_votes_per_month: number;
    platform_fee_percentage: number;
    max_team_members: number;
    custom_domain: boolean;
    remove_branding: boolean;
    priority_support: boolean;
    api_access: boolean;
    is_active: boolean;
    sort_order: number;
    created_at: Date;
    updated_at: Date;
}
