type Indices = T['length'] extends L ? T[number] : Indices; type LengthAtLeast = Pick, Indices>; export declare function hasLengthAtLeast(arr: T, len: L): arr is T & LengthAtLeast; export {};