/// import IProps from './IProps'; import './index.scss'; declare const Form: { (props: IProps): JSX.Element; defaultProps: { form: { basic: { fields: string[]; fieldConfig: { age: { 'x-component': string; 'x-component-props': { max: number; min: number; }; title: string; required: boolean; }; }; }; }; }; }; export default Form;