/** * Storage CLI — `aiwg storage ` * * Subcommands: * show — print effective config + resolved physical paths * list-backends — inventory of compiled-in adapters with status * test — round-trip read/write/list/delete through the * configured backend * migrate — copy entries from one backend to another * * @design @.aiwg/architecture/storage-design.md (§7) * @issue #934 * @issue #954 * @issue #955 */ import { type BackendType } from './index.js'; export declare function main(args: string[]): Promise; interface BackendStatus { implemented: boolean; note: string; trackingIssue?: string; } export declare function backendStatus(type: BackendType): BackendStatus; export {}; //# sourceMappingURL=cli.d.ts.map