declare function remove(this: T[], index: number): T[]; export default remove; declare global { interface Array { remove: typeof remove; } }