export declare const DRAFT_HELP = "usage: gws-axi gmail draft --to --subject --body [flags]\nflags[9]:\n --to REQUIRED \u2014 comma-separated recipient addresses\n --subject Subject line (default: empty)\n --body Body text. Pass via quoted string or shell heredoc\n --body-file Read the body from a file instead of --body (mutually\n exclusive with --body; use for long/multi-line bodies)\n --cc Comma-separated Cc addresses\n --bcc Comma-separated Bcc addresses\n --thread Attach the draft to an existing thread (reply draft)\n --plain Treat the body as LITERAL text, not markdown. Use when\n *, _, # or backticks must reach the reader as typed\n --account REQUIRED when 2+ accounts are authenticated\nexamples:\n gws-axi gmail draft --to alice@x.com --subject \"Re: budget\" --body \"Looks good \u2014 approving.\"\n gws-axi gmail draft --to a@x.com,b@x.com --subject Hi --body-file ./note.txt\n gws-axi gmail draft --to alice@x.com --subject \"Re: thread\" --body \"...\" --thread 1899abcd\nnotes:\n Creates a DRAFT only \u2014 gws-axi never sends mail. Review and send from the\n Gmail UI. The body is markdown, rendered to a single text/html part so\n recipients get reflowable, formatted text (Gmail adds the plain-text\n alternative itself on send).\n DO NOT hard-wrap the body. Write each paragraph as one long line \u2014 every\n newline you write becomes a line break in the sent message, so a body\n pre-wrapped at 72/80 columns arrives locked to that width on every screen.\n Blank line = new paragraph. GFM applies: **bold**, lists, tables, fenced\n code blocks (use those for text meant literally) \u2014 or pass --plain to turn\n markdown off entirely and keep indentation as typed.\noutput:\n Returns `action: drafted` plus the new draft_id, message_id, recipients,\n and subject. A help line links to where to review/send it.\n"; export declare const SEND_HELP = "usage: gws-axi gmail send \u2014 INTENTIONALLY OUT OF SCOPE\nstatus: not supported by design\nnotes:\n gws-axi deliberately does not send mail. It can draft messages for you, but\n sending is left to a human in the Gmail UI so an automated agent can't email\n people on your behalf. Use `gws-axi gmail draft` to compose, then review and\n send the draft yourself in Gmail.\n"; export declare function gmailDraftCommand(account: string, args: string[]): Promise;