import type { AriaSelectProps } from '@react-types/select'; import type { AllHTMLAttributes, Key } from 'react'; type SelectOption = readonly [value: string, label: string, selected?: boolean]; export type SelectProps = Omit, 'value' | 'onChange' | 'children'> & { error?: string; placeholder?: string; value?: V | null; onChange?: ((key: V) => any) | undefined; options: SelectOption[]; small?: boolean; } & Omit, 'value' | 'onChange'>; declare const Select: import("react").ForwardRefExoticComponent, "value" | "children" | "onChange"> & { error?: string; placeholder?: string; value?: Key | null | undefined; onChange?: ((key: Key) => any) | undefined; options: SelectOption[]; small?: boolean; } & Omit, "value" | "onChange"> & import("react").RefAttributes>; export default Select; //# sourceMappingURL=Select.d.ts.map