import * as React from 'react'; import type { OptionProps } from './Option'; export type OptionsGroupOption = Pick, 'label' | 'value' | 'icon' | 'disabled'>; interface OptionsGroupProps { name: string; options: OptionsGroupOption[]; columns?: number; selectedValue: T | undefined; onChange: (value: T) => void; disabled?: boolean; variant?: 'icon-label' | 'pills'; } export declare function OptionsGroup(props: OptionsGroupProps): React.JSX.Element; export {};