type Props = { title?: string; errors: { href: string; text: string; }[]; }; export default function ErrorSummary({ title, errors }: Props): import("react/jsx-runtime").JSX.Element; export {};