import { BasePlugin } from './plugin-base.js'; import type { PluginContext } from '../index.js'; /** * Accepts a `CID` and returns a `Response` with a body stream that is a CAR * of the `DAG` referenced by the `CID`. */ export declare class CarPlugin extends BasePlugin { readonly id = "car-plugin"; canHandle({ accept }: PluginContext): boolean; handle(context: PluginContext): Promise; } //# sourceMappingURL=plugin-handle-car.d.ts.map