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