declare global {
    interface Array<T> {
        reverse(this: Array<T>): T[];
    }
}
export declare function reverse<T>(this: T[]): T[];
