export interface BrightnessOptions { /** * Set the screen brightness between 0 and 255 or auto * @default 240 */ value: number | "auto"; } /** * Set the screen brightness */ export declare function brightness(options: BrightnessOptions): Promise;