/** * Single encodes SCAPI specific special characters (percentage sign `%` and comma `,`) in the given string in UTF-8 * Does not encode any other special characters in the string * @param str - The string to encode * @returns The encoded string */ export declare const encodeSCAPISpecialCharacters: (str: string) => string;