declare type OtherStateType = { other: Dictionary; }; declare type OtherValueType = { key: string; value: any; }; declare const _default: { state: OtherStateType; mutations: { SET_OTHER_VALUE(state: OtherStateType, { key, value }: OtherValueType): void; REMOVE_OTHER_VALUE(state: OtherStateType, key: string): void; CLEAR_OTHER_ALL_VALUE(state: OtherStateType): void; }; }; export default _default;