import { type SpectrumPickerProps } from '@adobe/react-spectrum'; import React from 'react'; import type { NormalizedItem } from '../utils'; /** * Picker component for selecting items from a list of items. Items can be * provided via the `children` prop. Each item can be a string, number, boolean, * or a Spectrum element. The remaining props are just pass through props * for the Spectrum Picker component. * See https://react-spectrum.adobe.com/react-spectrum/Picker.html */ export declare const Picker: React.ForwardRefExoticComponent, "children" | "items" | "selectedKey" | "defaultSelectedKey" | "disabledKeys" | "onSelectionChange" | "defaultItems"> & { children: import("../utils").ItemOrSection | import("../utils").ItemOrSection[]; tooltip?: boolean | import("../utils").TooltipOptions; selectedKey?: import("../utils").ItemKey | null; defaultSelectedKey?: import("../utils").ItemKey; disabledKeys?: Iterable; onChange?: (key: import("../utils").ItemKey | null) => void; onOpenChange?: (isOpen: boolean) => void; onScroll?: (event: Event) => void; onSelectionChange?: (key: import("../utils").ItemKey | null) => void; } & React.RefAttributes>>; export default Picker; //# sourceMappingURL=Picker.d.ts.map