declare class FormItemAttrs {
    wrapperCol: number;
    wrapperTol: number;
    layout: string;
    constructor(wrapperCol: number, wrapperTol: number, layout: string);
    getStyle(): {
        marginBottom: string;
        marginTop: string;
    };
    formatLayout(): {};
}
declare class FormItemLabel {
    layout: string;
    constructor(layout: string);
    getStyle(): {};
    getAlign(): {};
}
export { FormItemAttrs, FormItemLabel };
