import React from 'react'; import { SelectSystemProps, SelectSharedProps, SelectStyleProp } from './selectUtils'; export type { SelectParts, OptionProps, OptionGroupProps } from './selectUtils'; export { Option, OptionGroup } from './selectUtils'; declare type SelectWithCustomMenuDOMProps = React.ComponentPropsWithRef<'select'>; export declare type SelectWithCustomMenuProps = SelectWithCustomMenuDOMProps & SelectStyleProp & SelectSystemProps & SelectSharedProps; export declare const SelectWithCustomMenu: React.ForwardRefExoticComponent & React.RefAttributes>;