import { StateToken, StateContext } from '@ngxs/store'; import { RefreshState } from '../refresh/refresh-actions'; import { SetJobLevels } from './job-level-action'; export declare const JOB_LEVEL_TOKEN: StateToken; export declare class JobLevelState { refresh(ctx: StateContext, action: RefreshState): void; set(ctx: StateContext, action: SetJobLevels): void; }