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