export type ValidPeriods = "calendar_month" | "month" | "year" | "day"; export declare const BILLING_PERIOD_MAP: { calendar_month: string; month: string; year: string; day: string; }; export declare const getPricingPlanPeriod: (interval: number, period?: ValidPeriods) => string | null;