import m from 'mithril'; import { IAttrs } from '../../_shared'; import { IGridAttrs } from '../grid'; export interface IFormAttrs extends IAttrs, IGridAttrs { [htmlAttrs: string]: any; } export declare class Form implements m.Component { view({ attrs, children }: m.Vnode): m.Vnode; }