import { PrototypeStruct } from '..';
declare type AllPredicate<T> = (value: T) => boolean;
export declare type AllFn<T> = (predicate: AllPredicate<T>) => boolean;
export declare const all: PrototypeStruct;
declare global {
    interface Array<T> {
        all: AllFn<T>;
    }
}
export {};
//# sourceMappingURL=all.d.ts.map