export * from './hooks/useInput'; export * from './hooks/useFormInstance'; import BaseForm from './BaseForm'; import Item from './Item'; type FormComponent = typeof BaseForm & { Item: typeof Item; }; declare const Form: FormComponent; export default Form; //# sourceMappingURL=index.d.ts.map