UNPKG

534 BTypeScriptView Raw
1import * as React from 'react';
2export interface SelectGroupProps extends React.HTMLProps<HTMLDivElement> {
3 /** Checkboxes within group. Must be React.ReactElement<SelectOptionProps>[] */
4 children?: React.ReactNode;
5 /** Additional classes added to the CheckboxSelectGroup control */
6 className?: string;
7 /** Group label */
8 label?: string;
9 /** ID for title label */
10 titleId?: string;
11}
12export declare const SelectGroup: React.FunctionComponent<SelectGroupProps>;
13//# sourceMappingURL=SelectGroup.d.ts.map
\No newline at end of file