import { TextProps } from "react-native"; import { ReactNode } from "react"; //#region src/primitives/error/ErrorMessage.d.ts type ErrorMessageProps = TextProps & { children?: ReactNode; }; declare const ErrorMessage: { ({ children, ...textProps }: ErrorMessageProps): import("react").JSX.Element | null; displayName: string; }; //#endregion export { ErrorMessage, ErrorMessageProps }; //# sourceMappingURL=ErrorMessage.d.ts.map