import React from 'react'; import { FormProps as AntdFormProps } from 'antd'; import { PropsTypes } from '@orca-fe/deye-typings'; export interface FormProps> extends Omit { value?: T; onChange?: (value: T) => void; children?: React.ReactNode; } declare const Form: { >(props: FormProps): JSX.Element; title: string; icon: JSX.Element; isContainer: boolean; propsDef: PropsTypes[]; }; export default Form;