/** @import * as API from '@ucanto/interface' */ /** * Capability can only be delegated (but not invoked) allowing audience to * derived any `space/blob/` prefixed capability for the space identified * by DID in the `with` field. */ export const content: API.TheCapabilityParser, any>>; /** * Capability allowing blob content to be retrieved (typically as a DAG) via * byte range requests. */ export const retrieve: API.TheCapabilityParser, Schema.InferStruct<{ blob: Schema.StructSchema<{ digest: Schema.Schema, unknown>; }, any>; range: Schema.Schema<[number & API.Phantom<{ typeof: "integer"; }>, number & API.Phantom<{ typeof: "integer"; }>], any>; }>>>; export function equalDigest>(claimed: T, delegated: T): Schema.Result<{}, Schema.Error>; export function equalByteRange>(claimed: T, delegated: T): Schema.Result<{}, Schema.Error>; export { Schema }; import type * as API from '@ucanto/interface'; import { Schema } from '@ucanto/validator'; //# sourceMappingURL=content.d.ts.map