export declare const getFlexDirection: (props: FormGroupProps) => "column" | "row"; export declare const gridLayoutCss: import("styled-components").FlattenInterpolation>[]; /** * FormGroup组件属性接口 * * @export * @interface FormGroupProps */ export interface FormGroupProps { /** * 是否垂直方向显示 * * @type {boolean} * @memberof FormGroupProps */ column?: boolean; /** * 网格对齐布局 * * @type {boolean} * @memberof CheckboxGroupProps */ gridLayout?: boolean; /** * 按照几列做网格布局,默认为3列 * * @type {number} * @memberof CheckboxGroupProps */ columns?: number; } /** * 用于包装一组`Checkbox`和`Switch`的组件。可以控制组件横向或者纵向显示。使用`RadioGroup`来显示一组`Radio`。 * * @ReactComponent */ declare const FormGroup: import("styled-components").StyledComponentClass & import("react").HTMLAttributes & FormGroupProps, any, import("react").ClassAttributes & import("react").HTMLAttributes & FormGroupProps>; export default FormGroup;