import { PrototypeStruct } from '..';
export declare type MaxFn<T> = () => T | undefined;
export declare const max: PrototypeStruct;
declare global {
    interface Array<T> {
        max: MaxFn<T>;
    }
}
//# sourceMappingURL=max.d.ts.map