import React from 'react';
import { ILine } from '../Line/Line';
import { IElement } from '../types';
export declare type IFormRow = ILine & {
    name?: string | IElement;
    description?: string | IElement;
    start?: any;
    end?: any;
    row?: boolean;
    footer?: IElement;
    responsive?: boolean;
    HeaderProps?: any;
    MainProps?: any;
    TextProps?: any;
    AsideProps?: any;
    StartProps?: any;
    EndProps?: any;
};
declare const FormRow: React.FC<IFormRow>;
export default FormRow;
