declare const FormItem: any; declare const Form: any; export { FormItem, Form }; export type { formItemProps } from './src/form-item'; export type { formProps } from './src/form'; export declare type FormInstance = InstanceType; declare module 'vue' { interface GlobalComponents { AFormItem: typeof FormItem; AForm: typeof Form; } }