import type { FilesystemDB } from '../../filesystem-db.js'; import type { StoragePromptBlockType, StorageCreatePromptBlockInput, StorageUpdatePromptBlockInput, StorageListPromptBlocksInput, StorageListPromptBlocksOutput } from '../../types.js'; import type { PromptBlockVersion, CreatePromptBlockVersionInput, ListPromptBlockVersionsInput, ListPromptBlockVersionsOutput } from './base.js'; import { PromptBlocksStorage } from './base.js'; export declare class FilesystemPromptBlocksStorage extends PromptBlocksStorage { private helpers; constructor({ db }: { db: FilesystemDB; }); init(): Promise; dangerouslyClearAll(): Promise; getById(id: string): Promise; create(input: { promptBlock: StorageCreatePromptBlockInput; }): Promise; update(input: StorageUpdatePromptBlockInput): Promise; delete(id: string): Promise; list(args?: StorageListPromptBlocksInput): Promise; createVersion(input: CreatePromptBlockVersionInput): Promise; getVersion(id: string): Promise; getVersionByNumber(blockId: string, versionNumber: number): Promise; getLatestVersion(blockId: string): Promise; listVersions(input: ListPromptBlockVersionsInput): Promise; deleteVersion(id: string): Promise; deleteVersionsByParentId(entityId: string): Promise; countVersions(blockId: string): Promise; } //# sourceMappingURL=filesystem.d.ts.map