import type { ValuesOf } from '../../Types/ValuesOf'; /** * `InputState` - The `InputState` object is used to describe the different types of input states. * * @public */ export declare const InputState: { readonly Initial: "initial"; readonly Valid: "valid"; readonly Invalid: "invalid"; }; /** * @public */ export type InputState = ValuesOf; //# sourceMappingURL=InputState.d.ts.map