import type { AriaSelectProps } from '@react-types/select'; import type { AllHTMLAttributes, Key } from 'react'; export { Item } from 'react-stately'; export type SelectAriaProps = AriaSelectProps & { error?: string; placeholder?: string; value?: Key | null; onChange?: (key: Key) => void; small?: boolean; } & AllHTMLAttributes; export declare const SelectAria: import("react").ForwardRefExoticComponent & { error?: string; placeholder?: string; value?: Key | null; onChange?: (key: Key) => void; small?: boolean; } & AllHTMLAttributes & import("react").RefAttributes>; //# sourceMappingURL=SelectAria.d.ts.map