export interface EncodeParams { prefix?: string; suffix?: string; } /** * Encode a string with a prefix or suffix. * * @param {string} $str - to encode * @param {object} $params - How to encode the string */ export declare function EncodeString($str: string, $params: EncodeParams): string;