/** Clear string for parse to number */ export declare function formalForNumber(value: string): string; export declare function uppercaseFirstLetter(string: string): string; export declare function lowercaseFirstLetter(string: string): string; export declare function clearHtmlToText(html: string): string; export declare function htmlDecode(text: string): string; export declare function replaceAll(str: string, target: string, replace: string): string; export declare function parseHost(url: string): string; export declare function parsePath(url: string): string; export declare function createUrlArgs(data: object): string; export declare function copyToClipboard(text: string): boolean;