import type { Nullish } from '@toolbox-ts/types'; import type { Arr } from '@toolbox-ts/types/defs/array'; export declare function coalesceFirst(...arrs: (Nullish | T)[]): T; export declare function coalesceLast(...arrs: (Nullish | T)[]): T;