import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Returns the index of the first element that satisfies the predicate. * @tsplus static Chunk.Aspects findIndex * @tsplus pipeable Chunk findIndex * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/findIndex" */ export declare function findIndex(f: Predicate): (self: Chunk) => Maybe; //# sourceMappingURL=findIndex.d.ts.map