/** * `franklin content` CLI surface — human-facing read access to the * Content library that lives at ~/.blockrun/content.json. * * Tools (ContentCreate / ContentAddAsset) write the library during agent * sessions; before this command, there was no way to see the resulting * spend without scripting against the JSON file. Verified 2026-05-04 in * a live session: user asked "how much did I spend making this", agent * ran `franklin content list` and got "no content subcommand", fell * back to estimating from memory. * * Subcommands: * - list : table of id, type, title, status, spent/budget, assets * - show : full detail of one Content, including each asset */ import { Command } from 'commander'; export declare function buildContentCommand(): Command;