export function useInputElement(inputRef: any): any; export function useInputState(initialValue: any, isMasked: any): { inputRef: any; getInputState: () => { value: any; selection: any; }; getLastInputState: () => { value: any; selection: any; }; setInputState: ({ value, selection }: { value: any; selection: any; }) => void; }; export function usePrevious(value: any): any; //# sourceMappingURL=hooks.d.ts.map