UNPKG

709 BTypeScriptView Raw
1import * as React from "react";
2import { HTMLDivProps, Props } from "../../common/props";
3export interface ControlGroupProps extends Props, HTMLDivProps, React.RefAttributes<HTMLDivElement> {
4 /** Group contents. */
5 children?: React.ReactNode;
6 /**
7 * Whether the control group should take up the full width of its container.
8 *
9 * @default false
10 */
11 fill?: boolean;
12 /**
13 * Whether the control group should appear with vertical styling.
14 *
15 * @default false
16 */
17 vertical?: boolean;
18}
19/**
20 * Control group component.
21 *
22 * @see https://blueprintjs.com/docs/#core/components/control-group
23 */
24export declare const ControlGroup: React.FC<ControlGroupProps>;