import { type ReducerOptions, type InputState } from '@krutoo/input-mask/core'; import { Store } from 'redux'; import { ActionCreator } from './types'; export declare const actions: { readonly manualChange: ActionCreator<{ value: string; }>; readonly inputChange: ActionCreator<{ input: HTMLInputElement; }>; readonly inputSelectionChange: ActionCreator<{ input: HTMLInputElement; }>; }; export declare function createInputMaskStore(options: ReducerOptions, initialState?: InputState): Store;