/**
 * Module is responsible for generating a set of bids given some resources
 * @template RT
 */
export class TacticalModule<RT> {
    /**
     * @template RT
     * @param {Resource<RT>[]} resources
     * @returns {Promise<ResourceAllocationBid[]>}
     */
    collectBids<RT_1>(resources: Resource<RT_1>[]): Promise<ResourceAllocationBid[]>;
    /**
     * @readonly
     * @type {boolean}
     */
    readonly isTacticalModule: boolean;
}
//# sourceMappingURL=TacticalModule.d.ts.map