import { JSX } from 'react/jsx-runtime'; import * as React from "react"; import { AriaListBoxOptions } from "react-aria"; import type { ComboBoxState, SelectState } from "react-stately"; import { ControlInputProps, ControlNestedElementProps } from "../Control/Control"; export interface PickerManagedProps extends ControlNestedElementProps { controlState: SelectState | ComboBoxState; listBoxProps: AriaListBoxOptions; listBoxRef?: React.RefObject; children: React.ReactNode; } export interface PickerPublicProps extends ControlInputProps { } export interface PickerProps extends PickerPublicProps, PickerManagedProps { } export declare function Picker(props: PickerProps): JSX.Element; //# sourceMappingURL=Picker.d.ts.map