export declare const READ_HELP = "usage: gws-axi docs read [flags]\nargs[1]:\n The Google Doc ID (from the URL after /d/)\nflags[4]:\n --tab Tab ID to render (omit for single-tab docs; required for multi-tab)\n --full Don't truncate the rendered markdown (default cap: 8000 chars)\n --out Write the rendered markdown to a file (implies --full).\n Accepts a file path or directory; directories get\n `.md` appended. When set, the TOON response\n carries a `saved` field instead of the content block.\n --account <email> Account override when 2+ are configured\nexamples:\n gws-axi docs read 1BxAbc...\n gws-axi docs read 1BxAbc... --tab t.0\n gws-axi docs read 1BxAbc... --tab t.1.0 --full\n gws-axi docs read 1BxAbc... --out ./notes.md\noutput:\n A `document{id,title,tab,revision_id}` header, a `tabs[N]{id,title,index,parent,active}`\n listing (always shown, with \u2713 on the active tab if any), a `revisions[N]{id,modified,author}`\n block of the 5 most recent revisions (always shown \u2014 provenance travels with the\n content), and \u2014 when a tab is rendered \u2014 either a `content` block of GitHub-flavored\n markdown (inline, truncated unless --full) or a `saved` path (when --out is set).\n Multi-tab docs without --tab return only the tabs listing so the agent can pick one.\n help[] funnels to `docs revisions`, `docs download --revision`, and `docs diff`.\n"; export declare function docsReadCommand(account: string, args: string[]): Promise<string>;