import { type CommandModule } from 'yargs'; import { type APIOrganizationCommandFlags } from '../../lib/command/api-organization-command.js'; import { type AllOrganizationFlags } from '../../lib/command/common-flags.js'; import { type OutputItemOrListFlags } from '../../lib/command/listing-io.js'; export type CommandArgs = APIOrganizationCommandFlags & AllOrganizationFlags & OutputItemOrListFlags & { includeReadOnly?: boolean; subscriberType?: string; subscriberId?: string; idOrIndex?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=channels.d.ts.map