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