/** * Returns the first item in `a`. */ export declare function first_(a:readonly I[]):I|undefined export declare function maybe_first_( maybe_a:readonly I[]|undefined, or?:Or ):I|Or export { first_ as _first, maybe_first_ as _maybe_first, }