import InternalForm from './form'; import FormItem from './form-item'; type InternalFormType = typeof InternalForm; interface FormInterface extends InternalFormType { Item: typeof FormItem; } declare const Form: FormInterface; export default Form;