import { UserModifiableEntity } from '@sourceloop/core';
export declare class Plan extends UserModifiableEntity {
    id: string;
    name: string;
    description?: string;
    tier: string;
    size?: string;
    price: number;
    metaData?: object;
    billingCycleId: string;
    currencyId: string;
    constructor(data?: Partial<Plan>);
}
export interface PlanRelations {
}
export type PlanWithRelations = Plan;
