export declare const PermissionStatus: { readonly GRANTED: "granted"; readonly DENIED: "denied"; }; export type PermissionStatusValue = (typeof PermissionStatus)[keyof typeof PermissionStatus]; export declare const BrightnessMode: { readonly UNKNOWN: 0; readonly AUTOMATIC: 1; readonly MANUAL: 2; }; export type BrightnessModeValue = (typeof BrightnessMode)[keyof typeof BrightnessMode]; //# sourceMappingURL=constants.d.ts.map