type Props = { cancellationDate?: string | Date; status: "active" | "pending_cancellation"; planName: string; isFree: boolean; onCancel?: () => void; history?: boolean; hasHistory?: boolean; }; export declare function UserPlanUsage({ cancellationDate, status, planName, isFree, onCancel, history, hasHistory, }: Props): any; export {};