interface Plan {
    id: string;
}
export declare function usePlan(email: string | undefined): {
    plan: Plan | null;
    isLoading: boolean;
    error: Error | null;
};
export {};
