/** * Provides commands for managing timing configurations that control when and how * applets are displayed on signageOS devices. Timing configurations define the * relationship between devices, applets, and scheduling parameters. * * @group Management:202 * * @example * ```bash * # List timing configurations * sos timing list * ``` * * @since 0.3.0 */ export declare const timing: { name: "timing"; description: string; optionList: never[]; commands: { 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: import("../Command/commandDefinition").CommandLineOptions): Promise; }[]; run(): Promise; };