export declare class DashboardInvoice {
    paidAt?: Date;
    dueAt: Date;
    memberPlan?: string;
    amount: number;
}
