/**
 * Storage CLI — `aiwg storage <subcommand>`
 *
 * Subcommands:
 *   show               — print effective config + resolved physical paths
 *   list-backends      — inventory of compiled-in adapters with status
 *   test <subsystem>   — round-trip read/write/list/delete through the
 *                        configured backend
 *   migrate <subsystem> — 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<void>;
interface BackendStatus {
    implemented: boolean;
    note: string;
    trackingIssue?: string;
}
export declare function backendStatus(type: BackendType): BackendStatus;
export {};
//# sourceMappingURL=cli.d.ts.map