/** * Capability that allows a Storefront to request that a piece be aggregated * for inclusion in an upcoming an Filecoin deal. */ export const pieceOffer: import("@ucanto/interface").TheCapabilityParser, Schema.InferStruct<{ piece: import("../types.js").PieceLinkSchema; group: Schema.StringSchema; }>>>; /** * Capability that allows an Aggregator to signal a piece has been accepted * or rejected for inclusion in an aggregate. */ export const pieceAccept: import("@ucanto/interface").TheCapabilityParser, Schema.InferStruct<{ piece: import("../types.js").PieceLinkSchema; group: Schema.StringSchema; }>>>; import { Schema } from '@ucanto/validator'; //# sourceMappingURL=aggregator.d.ts.map