export declare const FILTER_LIST_HELP = "usage: gws-axi gmail filter-list [flags]\nflags[1]:\n --account Account override when 2+ are configured\noutput:\n A `filters[N]{id,criteria,action}` table. Each row summarizes one\n server-side rule. Pass an `id` to `gws-axi gmail filter-delete `.\nnotes:\n Filters are server-side auto-sort rules that run continuously on Google's\n side (separate from labels). Filters require the gmail.settings.basic scope. If this 403s, run `gws-axi auth login --account ` to re-consent.\n"; export declare const FILTER_CREATE_HELP = "usage: gws-axi gmail filter-create [flags]\ncriteria (>=1 required):\n --from Match sender\n --to Match recipient\n --subject Match subject\n --query Match an arbitrary Gmail search query\n --has-attachment Match only messages with attachments\naction (>=1 required):\n --add-label Apply a label. Repeatable / comma list. Accepts user\n + system labels (e.g. STARRED, IMPORTANT)\n --remove-label Remove a label. Use INBOX to skip-inbox (archive),\n UNREAD to mark read\n --forward Forward matching mail to this address (must be a\n verified forwarding address in Gmail settings)\nflags:\n --account REQUIRED when 2+ accounts are authenticated\nexamples:\n gws-axi gmail filter-create --from newsletters@x.com --remove-label INBOX --add-label News\n gws-axi gmail filter-create --subject \"[ALERT]\" --add-label STARRED --add-label IMPORTANT\nnotes:\n Idempotent: an existing filter with identical criteria + action returns\n `action: exists`. Filters require the gmail.settings.basic scope. If this 403s, run `gws-axi auth login --account ` to re-consent.\n"; export declare const FILTER_DELETE_HELP = "usage: gws-axi gmail filter-delete [flags]\nargs[1]:\n Filter ID (from `gws-axi gmail filter-list`)\nflags[1]:\n --account REQUIRED when 2+ accounts are authenticated\nnotes:\n Idempotent: deleting an unknown filter id returns `action: noop`.\n Filters require the gmail.settings.basic scope. If this 403s, run `gws-axi auth login --account ` to re-consent.\n"; export declare function gmailFilterListCommand(account: string, _args: string[]): Promise; export declare function gmailFilterCreateCommand(account: string, args: string[]): Promise; export declare function gmailFilterDeleteCommand(account: string, args: string[]): Promise;