import type { Cid } from '../syntax/cid.ts'; import { type CidLink } from './cid-link.ts'; /** * represents a reference to a data blob */ export interface Blob { $type: 'blob'; mimeType: TMime; ref: CidLink; size: number; } export declare const isBlob: (input: unknown) => input is Blob; /** * deprecated interface representing an interface to a data blob */ export interface LegacyBlob { cid: Cid; mimeType: TMime; } export declare const isLegacyBlob: (input: unknown) => input is LegacyBlob; //# sourceMappingURL=blob.d.ts.map