declare function insert(this: T[], element: T): T[]; export default insert; declare global { interface Array { insert: typeof insert; } }