import { StateContext } from '@ngxs/store'; import { RefreshState } from '../refresh/refresh-actions'; import { SetAuthentication } from './auth-actions'; export declare class AuthState { refresh(ctx: StateContext, action: RefreshState): void; setAuthentication(ctx: StateContext, action: SetAuthentication): void; deleteAuthentication(ctx: StateContext): void; }