import { AriaSelectOptions } from 'react-aria'; import { SelectStateOptions } from 'react-stately'; import { PopoverProps } from '../Popover/Popover'; import React from 'react'; interface SelectProps extends AriaSelectOptions, SelectStateOptions { className?: string; style?: React.CSSProperties; leadingIcon?: React.ReactNode; trailingIcon?: React.ReactNode; popoverProps?: Omit; variant?: 'filled' | 'outlined'; } declare const Select: { (props: SelectProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Select }; //# sourceMappingURL=Select.d.ts.map