declare global { interface String { isUrlExternal(): boolean; htmlEncode(): string; htmlDecode(): string; contains(it: string): boolean; pick(min: number, max: number): string; shuffle(): string; toSeoUrl(): string; } } export {};