UNPKG

603 BTypeScriptView Raw
1import * as React from 'react';
2export interface FormSelectOptionGroupProps extends Omit<React.HTMLProps<HTMLOptGroupElement>, 'disabled'> {
3 /** content rendered inside the Select Option Group */
4 children?: React.ReactNode;
5 /** additional classes added to the Select Option */
6 className?: string;
7 /** the label for the option */
8 label: string;
9 /** flag indicating if the Option Group is disabled */
10 isDisabled?: boolean;
11}
12export declare const FormSelectOptionGroup: React.FunctionComponent<FormSelectOptionGroupProps>;
13//# sourceMappingURL=FormSelectOptionGroup.d.ts.map
\No newline at end of file