type Params = { text: string | undefined | null; nested?: boolean; }; export declare function getVisibleCharCount({ text, nested }: Params): number; export {};