declare type TInfos = Array<{
text: string;
style: string | Record<string, any>;
sizeProps: string | Record<string, any>;
themeProps: string | Record<string, any>;
}>;
declare const logText: (infos: TInfos) => {
content: string;
styles: string[];
};
export { logText };