import { CommandLineOptions } from '../../Command/commandDefinition'; declare const OPTION_LIST: readonly [{ readonly name: "no-default-organization"; readonly type: BooleanConstructor; readonly description: "Prevent using the defaultOrganizationUid from ~/.sosrc"; }, { readonly name: "organization-uid"; readonly type: StringConstructor; readonly description: "Organization UID"; }, { readonly name: "device-uid"; readonly type: StringConstructor; readonly description: "Device UID"; }]; /** * Retrieves and displays all timing configurations that are currently assigned * to a specific device. Timing configurations define when and how content * (applets) should be displayed on devices, including scheduling and duration settings. * * @group Management:31 * * @example * ```bash * # List timings for a specific device * sos timing list --device-uid device123 * * # List timings with organization override * sos timing list --device-uid device123 --organization-uid org456 * ``` * * @throws {Error} When device cannot be found or accessed * * @throws {Error} When organization access is denied * * @throws {Error} When timing list retrieval fails * * @since 0.3.0 */ export declare const timingList: { name: "list"; description: string; optionList: readonly [{ readonly name: "no-default-organization"; readonly type: BooleanConstructor; readonly description: "Prevent using the defaultOrganizationUid from ~/.sosrc"; }, { readonly name: "organization-uid"; readonly type: StringConstructor; readonly description: "Organization UID"; }, { readonly name: "device-uid"; readonly type: StringConstructor; readonly description: "Device UID"; }]; commands: never[]; run(options: CommandLineOptions): Promise; }; export {};