import type { ReactNode, PropsWithChildren } from 'react'; /** * Typeguard to check if the children is only a single string. * @internal */ export declare function hasSingleStringChild(children: ReactNode): children is string; /** * Typeguard to check if the children are an array of strings. * @internal */ export declare function hasArrayOfStringChildren(children: ReactNode): children is string[]; /** Helper component to wrap the children into a TextEllpipsis if valid. * @internal */ export declare function TextEllipsisAroundChildren(props: PropsWithChildren): number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined;