import { BasicInputProps } from "./BasicInput";
export type Props = BasicInputProps & {
    value?: string;
    onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
    maxLength?: number;
};
export declare const VuiTextInput: import("react").ForwardRefExoticComponent<BasicInputProps & {
    value?: string | undefined;
    onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
    maxLength?: number | undefined;
} & import("react").RefAttributes<HTMLInputElement | null>>;
