export declare type GenerateChargebeePortalRequest = { redirect_url: string; }; export declare type GenerateChargebeePortalResponse = { portal_session: ChargebeePortalSession; }; export declare type ChargebeePortalSession = { id: string; token: string; access_url: string; status: string; created_at: number; expires_at: number; object: string; customer_id: string; };