import { BlobStore } from '@mastra/core/storage'; import type { StorageBlobEntry } from '@mastra/core/storage'; import type { LibSQLDomainConfig } from '../../db/index.js'; export declare class BlobsLibSQL extends BlobStore { #private; static readonly MANAGED_TABLES: readonly ["mastra_skill_blobs"]; constructor(config: LibSQLDomainConfig); init(): Promise; put(entry: StorageBlobEntry): Promise; get(hash: string): Promise; has(hash: string): Promise; delete(hash: string): Promise; putMany(entries: StorageBlobEntry[]): Promise; getMany(hashes: string[]): Promise>; dangerouslyClearAll(): Promise; } //# sourceMappingURL=index.d.ts.map