import React from "react"; interface ValidationErrorsProps { errors: string[]; className?: string; } export declare function ValidationErrors({ errors, className }: ValidationErrorsProps): React.JSX.Element | null; export {};