export declare const LABEL_CREATE_HELP = "usage: gws-axi gmail label-create --name [flags]\nflags[2]:\n --name REQUIRED \u2014 label name. Use \"Parent/Child\" for nesting\n --account REQUIRED when 2+ accounts are authenticated\nexamples:\n gws-axi gmail label-create --name Receipts\n gws-axi gmail label-create --name \"Work/Clients\"\nnotes:\n Idempotent: if a label with this exact name already exists, returns\n `action: exists` with its id rather than erroring. Apply the label to\n messages with `gws-axi gmail modify --add-label `.\n"; export declare const LABEL_UPDATE_HELP = "usage: gws-axi gmail label-update --name [flags]\nargs[1]:\n Existing label to rename (id or current name)\nflags[2]:\n --name REQUIRED \u2014 the new label name\n --account REQUIRED when 2+ accounts are authenticated\nexamples:\n gws-axi gmail label-update Receipts --name \"Receipts/2026\"\n gws-axi gmail label-update Label_42 --name Archive\nnotes:\n Only user labels can be renamed \u2014 system labels (INBOX, STARRED, \u2026) are\n rejected. Run `gws-axi gmail labels` to find ids/names.\n"; export declare const LABEL_DELETE_HELP = "usage: gws-axi gmail label-delete [flags]\nargs[1]:\n Label to delete (id or name)\nflags[2]:\n --account REQUIRED when 2+ accounts are authenticated\n --yes Reserved (no-op) \u2014 writes are already explicit\nexamples:\n gws-axi gmail label-delete Receipts\n gws-axi gmail label-delete Label_42\nnotes:\n Idempotent: deleting a label that doesn't exist returns `action: noop`.\n Deleting a label removes it from all messages but does not delete the\n messages. System labels cannot be deleted.\n"; export declare function gmailLabelCreateCommand(account: string, args: string[]): Promise; export declare function gmailLabelUpdateCommand(account: string, args: string[]): Promise; export declare function gmailLabelDeleteCommand(account: string, args: string[]): Promise;