export declare const urlEncode: (text: string, type?: string) => string; export declare const urlDecode: (text: string, type?: string) => string; export declare const urlEncodeAsync: (textPromise: Promise, type?: string) => Promise; export declare const urlDecodeAsync: (textPromise: Promise, type?: string) => Promise; export declare const urlData: (content: string, type: string) => string;