/** * External dependencies */ import type { Reducer } from 'react'; /** * Internal dependencies */ import type { InputAction } from './actions'; export interface InputState { _event: Event | {}; error: unknown; initialValue?: string; isDirty: boolean; isDragEnabled: boolean; isDragging: boolean; isPressEnterToChange: boolean; value?: string; } export declare type StateReducer = Reducer; export declare const initialStateReducer: StateReducer; export declare const initialInputControlState: InputState; //# sourceMappingURL=state.d.ts.map