import { type ReactElement, type ReactNode } from 'react'; import { type MessageDescriptor } from 'react-intl'; /** * Returns whether children only consists of stringifiable children, that can receive standard text formatting. * @internal */ export declare function canReceiveDefaultTextFormat(children: ReactNode): children is string | number | boolean | null | undefined | ReactElement; }>;