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