import { type CliError } from "../_utils/cli-error.js"; import { type Result } from "../_utils/result.js"; /** * `glen invite [more…] [--role admin]` — invite teammates to the active * org by email. Mirrors the dashboard invite (same Better-Auth invitation + * `/accept-invitation/` flow), so a teammate accepts and lands straight in * the shared memory. postRoute owns auth/426/no-org handling. */ declare const invite: (emails: string[], role: "member" | "admin") => Promise>; export { invite };