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