import { BaseCommand } from '../../base-command.js'; /** * Lists events emitted into the activity feed of an organization the caller is an active member of (member invites, customer events, subscription transitions, webhook deliveries, …). Requires the caller to be a Member or Admin of `orgId`; the backend returns 403 otherwise. Premium+ entitlement is enforced server-side. */ export default class GetOrganizationActivity extends BaseCommand { static description: string; static examples: string[]; static flags: { profile: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; format: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; verbose: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; static args: { org: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; run(): Promise; } //# sourceMappingURL=get-organization-activity.d.ts.map