import type { SelectField } from './SelectField.js';
export interface SelectInputProps<Key extends string> {
field: SelectField<Key>;
}
export declare function SelectInput<Key extends string>({ field }: SelectInputProps<Key>): import("react/jsx-runtime").JSX.Element;