export interface SubscriptionState { isActive: boolean; multiAgentEnabled: boolean; billingEnd: string | null; loading: boolean; error: string | null; } /** * Fetches GET /subscriptions/me and caches the result for 60 s. * Re-fetches on screen focus. */ export declare function useSubscription(userToken: string): SubscriptionState & { refresh: () => void; }; //# sourceMappingURL=useSubscription.d.ts.map