declare const SIZE: readonly ["m", "l"];
export type BasicInputProps = {
    className?: string;
    id?: string;
    name?: string;
    placeholder?: string;
    isInvalid?: boolean;
    size?: (typeof SIZE)[number];
    fullWidth?: boolean;
    onSubmit?: () => void;
    autoFocus?: boolean;
    autoComplete?: boolean | string;
};
export declare const VuiBasicInput: import("react").ForwardRefExoticComponent<BasicInputProps & import("react").RefAttributes<HTMLInputElement | null>>;
export {};
