import { IUser } from "../../models/security/user-profile.interface"; export interface IAuthenticatedUserState { data: IUser; isLoaded: boolean; } export declare const initialAuthenticatedUserState: IAuthenticatedUserState;