import React from 'react';
import { ILine } from '../Line/Line';
import { IElement } from '../types';
export declare type IForm = Omit<ILine, 'onSubmit'> & {
    accordion?: boolean;
    divider?: boolean;
    name?: string | IElement;
    description?: string | IElement;
    start?: any;
    end?: any;
    footer?: IElement;
    onSubmit?: (event: SubmitEvent) => any;
    ComponentForm?: any;
    wrapper?: any;
    HeaderProps?: any;
    TextProps?: any;
    AsideProps?: any;
    StartProps?: any;
    EndProps?: any;
    AccordionProps?: any;
    AccordionMainProps?: any;
};
declare const Form: React.FC<IForm>;
export default Form;
