/** * Reverses a string * * @export * @param {string} str * @returns {string} */ export declare function ReverseString(str: string): string;