import { FormProps } from 'antd';
import { FC } from 'react';
import { FORM, TComponentProps } from '../../Types';
interface IChildren extends Omit<FormProps, 'children'> {
    children: TComponentProps[];
}
export interface IForm {
    ctype: typeof FORM;
    props: IChildren;
}
declare const Form: FC<IForm>;
export default Form;
