///
import { BoxProps } from '../Box';
import { FieldVariantName } from '../theme';
import { AutoCompleteOptions } from './types';
export declare type HTMLInputProps = Omit, 'ref' | 'autoComplete' | 'as' | '__themeKey'>;
export interface InputPrimitiveProps extends HTMLInputProps {
/**
* Autocomplete helps to fill an input with device-remembered values. See MDN's documentation on the [attribute and
* its values](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#Values).
*/
autoComplete?: AutoCompleteOptions;
'data-testid'?: string;
variant?: FieldVariantName | FieldVariantName[];
}
export declare const InputPrimitive: import("react").ForwardRefExoticComponent>;