/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { Asset, AssetPath, AssetType, InspectableAsset, LLMContent } from "@breadboard-ai/types"; export { InspectableAssetImpl }; declare class InspectableAssetImpl implements InspectableAsset { readonly title: string; readonly description: string; readonly type: AssetType; readonly subType: string; readonly data: LLMContent[]; readonly visual: Record; constructor(path: AssetPath, asset: Asset); } //# sourceMappingURL=inspectable-asset.d.ts.map