import type { LixPlugin } from "../../plugin/lix-plugin.js"; export declare const LixUnknownFileSchema: { readonly type: "object"; readonly properties: { readonly value: { readonly type: "string"; readonly contentEncoding: "base64"; readonly description: "Base64-encoded binary file data"; }; }; readonly additionalProperties: false; readonly "x-lix-key": "lix_unknown_file"; readonly "x-lix-version": "1.0"; }; /** * Internal fallback plugin that handles unknown file types by storing the entire blob. * This serves as a fallback for materialization when no specific plugin matches a file. * * This plugin always matches any file path and stores the complete file data * as a single entity, allowing retrieval of the original file content. */ export declare const lixUnknownFileFallbackPlugin: LixPlugin; //# sourceMappingURL=unknown-file-fallback-plugin.d.ts.map