/** * @file FormItem.tsx * * @date 2021-06-03 20:59 */ import { PropsWithChildren } from 'react'; interface FormItemProps { errorMsg?: string; } export declare const FormItem: (props: PropsWithChildren) => JSX.Element; export {};