import m from 'mithril'; import { IColAttrs } from '../grid'; export interface IFormGroupAttrs extends IColAttrs { /** Text label */ label?: string; /** Inner content; can be used instead of passing children */ content?: m.Children; /** Disables interaction */ disabled?: boolean; } export declare class FormGroup implements m.Component { view({ attrs, children }: m.Vnode): m.Vnode; }