1 | import type * as React from 'react';
|
2 | import type { DefaultOptionType } from './Select';
|
3 | export interface OptGroupProps extends Omit<DefaultOptionType, 'options'> {
|
4 | children?: React.ReactNode;
|
5 | }
|
6 | export interface OptionGroupFC extends React.FC<OptGroupProps> {
|
7 | /** Legacy for check if is a Option Group */
|
8 | isSelectOptGroup: boolean;
|
9 | }
|
10 | /** This is a placeholder, not real render in dom */
|
11 | declare const OptGroup: OptionGroupFC;
|
12 | export default OptGroup;
|