import React, { type ReactNode } from "react"; export interface Props { text: string; children?: ReactNode; id: string; dataTestId?: string; classes?: string; } export declare const Error: (props: Props) => React.JSX.Element;