/**
 * Knowledge Base CLI — `aiwg kb <subcommand>`
 *
 * Thin storage wrapper for the knowledge-base subsystem. Routes all
 * persistence through `resolveStorage('kb')` so the KB honors
 * `.aiwg/storage.config` redirection (Obsidian vault, Logseq graph, S3
 * prefix, etc.) without each kb skill hardcoding `.aiwg/kb/`.
 *
 * Subcommands:
 *   path [<subpath>]    Print resolved physical path to the KB root or a sub-entry
 *   list [--prefix p]   List entries, optionally filtered
 *   get <path>          Read an entry's content to stdout
 *   put <path>          Write stdin contents to an entry (creates parents)
 *   delete <path>       Delete an entry (no-op if missing)
 *
 * @design @.aiwg/architecture/storage-design.md (§4, §5)
 * @issue #934
 * @issue #965
 */
export declare function main(args: string[]): Promise<void>;
//# sourceMappingURL=cli.d.ts.map