declare global { interface String { reverse(): string; } } declare function reverse(str: string): string; export { reverse };