///
export interface AsyncInputProps {
disabled?: boolean;
error?: string;
loading?: boolean;
valid?: boolean;
value?: string;
label?: string;
required?: boolean;
placeholder?: string;
onKeyPress?: React.KeyboardEventHandler;
onChange?: React.ChangeEventHandler;
style?: React.CSSProperties;
}
export declare function AsyncInput(props: AsyncInputProps): import("react/jsx-runtime").JSX.Element;