export declare const COMMENTS_HELP = "usage: gws-axi docs comments [flags]\nargs[1]:\n The Google Doc ID (from the URL after /d/)\nflags[4]:\n --include-resolved Also show comments that have been resolved\n --full Don't truncate comment/reply bodies (default cap: 500 chars)\n --limit Max comments to return (default: 50)\n --account Account override when 2+ are configured\nexamples:\n gws-axi docs comments 1BxAbc...\n gws-axi docs comments 1BxAbc... --include-resolved --full\noutput:\n A `comments[N]{id,author,created,resolved,quoted_content,body,reply_count}`\n list and (when any comment has replies) a sibling `replies[N]{comment,author,created,body}`\n table keyed by parent comment id. Bodies and quoted_content are truncated\n at 500 chars unless --full is passed.\nnotes:\n `quoted_content` is the exact text in the doc that the comment is anchored\n to \u2014 important for agents to know what the comment is *about*. Comments\n without an anchor (overall-document comments) will have an empty value.\n"; /** * Options for aliasing this Drive-comments handler onto another resource type * (e.g. `sheets comments`). Drive comments are file-type-agnostic, so the only * per-service differences are cosmetic: the header label and the not-found code. */ export interface CommentsOptions { /** Header/message noun, e.g. "document" (default) or "spreadsheet". */ resource?: string; /** Domain error code for a 404, e.g. "DOCUMENT_NOT_FOUND" (default). */ notFoundCode?: string; } export declare function docsCommentsCommand(account: string, args: string[], opts?: CommentsOptions): Promise;