import { type ReactElement, type ReactNode } from "react"; import { type TypographyProps } from "./typography"; export interface ErrorTextProps { className?: { root?: string; icon?: string; text?: TypographyProps["className"]; }; children: ReactNode; } export declare const ErrorText: ({ children, className, }: ErrorTextProps) => ReactElement; //# sourceMappingURL=error-text.d.ts.map