import { type CommandModule } from 'yargs'; import { type DevicePreference } from '@smartthings/core-sdk'; import { type APICommand, type APICommandFlags } from '../lib/command/api-command.js'; 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 declare const standardPreferences: (command: APICommand) => Promise; export declare const customPreferences: (command: APICommand) => Promise; export declare function preferencesForAllOrganizations(command: APICommand): Promise; export type CommandArgs = APIOrganizationCommandFlags & AllOrganizationFlags & OutputItemOrListFlags & { namespace?: string; standard: boolean; idOrIndex?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=devicepreferences.d.ts.map