You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
451 B
13 lines
451 B
import * as React from 'react';
|
|
import { OptionGroupData } from './interface';
|
|
export interface OptGroupProps extends Omit<OptionGroupData, 'options'> {
|
|
children?: React.ReactNode;
|
|
}
|
|
export interface OptionGroupFC extends React.FC<OptGroupProps> {
|
|
/** Legacy for check if is a Option Group */
|
|
isSelectOptGroup: boolean;
|
|
}
|
|
/** This is a placeholder, not real render in dom */
|
|
declare const OptGroup: OptionGroupFC;
|
|
export default OptGroup;
|