///
import type { IUserProfile, ITenantsResponse } from '@frontegg/rest-api';
export type User = IUserProfile & {
tenants: ITenantsResponse[];
activeTenant: ITenantsResponse;
};
export interface FronteggState {
accessToken: string | null;
refreshToken: string | null;
refreshingToken: boolean;
isAuthenticated: boolean;
isLoading: boolean;
user: User | null;
initializing: boolean;
showLoader: boolean;
}
export declare const defaultFronteggState: FronteggState;
declare const FronteggContext: import("react").Context;
export default FronteggContext;
//# sourceMappingURL=FronteggContext.d.ts.map