import { type Argv } from 'yargs'; import { type APICommand, type APICommandFlags } from './api-command.js'; export type APIOrganizationCommandFlags = APICommandFlags & { organization?: string; }; export declare const apiOrganizationCommandBuilder: (yargs: Argv) => Argv; export type APIOrganizationCommand = APICommand; /** * Base for commands that need to use Rest API via the SmartThings Core SDK and can act on the * behalf of different organizations. */ export declare const apiOrganizationCommand: (flags: T) => Promise>; //# sourceMappingURL=api-organization-command.d.ts.map