/** * Main utility composable for authentication management. * Provides access to authentication store, configuration, and helper functions. * @returns Object containing authentication utilities and state management functions */ export declare const useUmbuUtils: () => { config: any; publicConfig: any; store: any; getRedirect: (strategyName: string) => Record | null; getStrategyConfig: (name: string) => Record; getEndpoint: (strategyName: string, key: string) => { url: string; method: string; } | null; extractUser: (data: unknown, strategyName: string) => unknown; clearAuthData: (prefix: string, provider?: "passport" | "sanctum") => void; handleRedirect: (strategyName: string, type: "login" | "logout") => Promise; };