/** * `pdp/accept` capability allows an agent to signal acceptance of a blob * into a PDP aggregate. The capability confirms that the blob has been * included in an aggregate piece with the provided inclusion proof. */ export const accept: import("@ucanto/interface").TheCapabilityParser, Schema.InferStruct<{ blob: Schema.Schema, unknown>; }>>>; /** * `pdp/info` capability allows an agent to request information about * a blob's inclusion in PDP aggregates. The response includes the piece * CID and a list of aggregates containing the blob with their inclusion proofs. */ export const info: import("@ucanto/interface").TheCapabilityParser, Schema.InferStruct<{ blob: Schema.Schema, unknown>; }>>>; export { Schema }; import { Schema } from '@ucanto/validator'; //# sourceMappingURL=pdp.d.ts.map