import "./isEmpty"; declare function first(this: T[]): T; export default first; declare global { interface Array { first: typeof first; } }