export declare const DEFAULT_PLANS: Array<{
    code: string;
    name: string;
    priceMonthly: number;
    currency: string;
    features: Array<{
        k: string;
        v: string;
    }>;
}>;
