export declare const SUMMARIZE_HELP = "usage: gws-axi slides summarize [flags]\nargs[1]:\n The Slides presentation ID\nflags[3]:\n --full Bypass the 8000-char truncation threshold and emit\n the complete deck inline.\n --out Write the full deck markdown to a file instead of\n embedding it inline (implies --full).\n --account Account override when 2+ are configured\nexamples:\n gws-axi slides summarize 1AbC...\n gws-axi slides summarize 1AbC... --full\n gws-axi slides summarize 1AbC... --out ./deck.md\noutput:\n A `presentation{id,title,slide_count}` header, then either a\n `content` block of GitHub-flavored markdown (one `## N. Title`\n section per slide with body + speaker notes) \u2014 or a `saved` path\n when --out is set. Same truncation pattern as `docs read`: default\n 8000-char cap with --full / --out as escape hatches.\nnotes:\n Embedded hyperlinks are resolved inline as markdown `[text](url)`\n (links_resolved: N in the header). For review comments use\n `gws-axi slides comments `.\n"; export declare function slidesSummarizeCommand(account: string, args: string[]): Promise;