import type { PrototypeStruct } from '../index.js'; declare type SelectCallbackFn = (element: T) => boolean; interface Select { select(callbackFn: SelectCallbackFn): T[]; } export declare const select: PrototypeStruct; declare global { interface Array extends Select { } } export {}; //# sourceMappingURL=select.d.ts.map