/// export interface FormErrorShowProps { errors?: { [key: string]: string[]; }; name: string; } declare const FormErrorShow: ({ errors, name }: FormErrorShowProps) => JSX.Element | null; export default FormErrorShow;