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