/** * @file /src/utils/theme.ts * @name Theme * @description Utility functions for handling the theme of the application */ import { AppTheme } from "../constants/theme"; /** * Returns the preferred device theme based on the user's system settings. * @returns The preferred device theme (either DARK_THEME or LIGHT_THEME). */ export declare const getDeviceTheme: () => AppTheme; //# sourceMappingURL=theme.d.ts.map