/** * Returns the reversed string. * * @example * ```typescript * reverse('hello'); // => 'olleh' * ``` */ declare const reverse: (str: string) => string; export default reverse; //# sourceMappingURL=reverse.d.ts.map