import type { FilesystemDB } from '../../filesystem-db.js'; import type { StorageMCPClientType, StorageCreateMCPClientInput, StorageUpdateMCPClientInput, StorageListMCPClientsInput, StorageListMCPClientsOutput } from '../../types.js'; import type { MCPClientVersion, CreateMCPClientVersionInput, ListMCPClientVersionsInput, ListMCPClientVersionsOutput } from './base.js'; import { MCPClientsStorage } from './base.js'; export declare class FilesystemMCPClientsStorage extends MCPClientsStorage { private helpers; constructor({ db }: { db: FilesystemDB; }); init(): Promise; dangerouslyClearAll(): Promise; getById(id: string): Promise; create(input: { mcpClient: StorageCreateMCPClientInput; }): Promise; update(input: StorageUpdateMCPClientInput): Promise; delete(id: string): Promise; list(args?: StorageListMCPClientsInput): Promise; createVersion(input: CreateMCPClientVersionInput): Promise; getVersion(id: string): Promise; getVersionByNumber(mcpClientId: string, versionNumber: number): Promise; getLatestVersion(mcpClientId: string): Promise; listVersions(input: ListMCPClientVersionsInput): Promise; deleteVersion(id: string): Promise; deleteVersionsByParentId(entityId: string): Promise; countVersions(mcpClientId: string): Promise; } //# sourceMappingURL=filesystem.d.ts.map