import { SelectField, SelectFieldProps, UseOptionsProps } from "../../hooks"; export type SelectProps = SelectFieldProps & UseOptionsProps & { placeholder?: string; }; export declare const Select: ({ field, getValue, getLabel, options, placeholder, initialValue, }: SelectProps) => JSX.Element;