import type { OptionHTMLAttributes } from 'react'; export type SelectOptionProps = { /** * Change the default rendered element for the one passed as a child, merging their props and behavior. * @default false */ asChild?: boolean; } & OptionHTMLAttributes; /** * SelectOption component, used to display a native option within a select. * * @example * */ export declare const SelectOption: import("react").ForwardRefExoticComponent<{ /** * Change the default rendered element for the one passed as a child, merging their props and behavior. * @default false */ asChild?: boolean; } & OptionHTMLAttributes & import("react").RefAttributes>; //# sourceMappingURL=select-option.d.ts.map