declare global {
    interface Array<T> {
        removeAt(this: Array<T>, index: number, mutateArray?: boolean): T[];
    }
}
export declare function removeAt<T>(this: T[], index: number, mutateArray?: boolean): T[];
