import React from 'react'; import { SelectSystemProps, SelectStyleProp, SelectSharedProps } from './selectUtils'; export type { SelectParts } from './selectUtils'; declare type SelectWithNativeMenuDOMProps = React.ComponentPropsWithRef<'select'>; export declare type SelectWithNativeMenuProps = SelectWithNativeMenuDOMProps & SelectStyleProp & SelectSystemProps & SelectSharedProps; /** * This component can be used by itself if we don't need to style the menu. * The benefits are that it will use a lot less code. */ export declare const SelectWithNativeMenu: React.ForwardRefExoticComponent & React.RefAttributes>;