export declare class MyUtilities { static MIN_LENGTH_TOKENS: number; static MAX_LENGTH_TOKENS: number; static LISTA_NEGRA_TOKENS: string[]; static stringify(circ: any): string; static htmlEntities(str: string): string; static splitPageData(path: string): { pageId: number | null; pageType: string | undefined; }; static partirTexto(q: string, buscable?: boolean, permisivo?: boolean): string[]; static isHidden(el: any): boolean; static downloadTextData({ text, mime, filename }: { text?: string | undefined; mime?: string | undefined; filename?: string | undefined; }): void; static replaceAsync(str: string, regex: string | RegExp, asyncFn: Function): Promise; static replaceAsync2(str: string, regex: string | RegExp, asyncFn: Function): Promise<{ first: string; second: string; }>; static removeRepeatedSlash(url: string): string; } //# sourceMappingURL=MyUtilities.d.ts.map