declare function isEmpty(this: T[]): boolean; export default isEmpty; declare global { interface Array { isEmpty: typeof isEmpty; } }