UNPKG

746 BTypeScriptView Raw
1/// <reference types="react" />
2import { AbstractPureComponent2 } from "../../common";
3import { HTMLDivProps, Props } from "../../common/props";
4export declare type ControlGroupProps = IControlGroupProps;
5/** @deprecated use ControlGroupProps */
6export interface IControlGroupProps extends Props, HTMLDivProps {
7 /**
8 * Whether the control group should take up the full width of its container.
9 *
10 * @default false
11 */
12 fill?: boolean;
13 /**
14 * Whether the control group should appear with vertical styling.
15 *
16 * @default false
17 */
18 vertical?: boolean;
19}
20export declare class ControlGroup extends AbstractPureComponent2<ControlGroupProps> {
21 static displayName: string;
22 render(): JSX.Element;
23}