import { ReactNode, JSX } from 'react'; import { AuthContextValue } from './types'; interface AuthProviderProps { children: ReactNode; } /** * Provides auth state, token refresh, session sync. */ export declare function AuthProvider({ children }: AuthProviderProps): JSX.Element; /** * Hook to access auth context. */ export declare function useAuthContext(): AuthContextValue; export {};