export declare const SET_FOCUSED_ABILITY = "SET_FOCUSED_ABILITY"; export declare const setFocusedAbility: (focusedAbility: string | null) => { type: string; payload: string | null; }; export declare const SET_DEFAULT_ABILITY = "SET_DEFAULT_ABILITY"; export declare const setDefaultAbility: (defaultAbilityName: string | null) => { type: string; payload: string | null; }; export declare const SET_ABILITY_STATUS = "SET_ABILITY_STATUS"; export declare const setAbilityStatus: (abilityName: string, value: boolean) => { type: string; payload: { abilityName: string; value: boolean; }; }; export declare const ABILITY_COMPLETED = "ABILITY_COMPLETED"; export declare const abilityCompleted: (abilityName: string | null) => { type: string; payload: string | null; };