import { InputState } from '../types/inputTheme';
export declare const getState: (value: string | number | undefined, focus: boolean, disabled?: boolean, error?: boolean, informationAssociated?: string) => InputState;
export declare const hasError: (state?: InputState) => boolean;
export declare const isDisabled: (state: InputState) => boolean;
