import { PropsWithChildren } from 'react'; export declare type OptionGroupProps = PropsWithChildren<{ /** Group title */ name: string; }>; declare const OptionGroup: ({ name, children }: OptionGroupProps) => JSX.Element; export default OptionGroup;