/** * @file /src/constants/theme.ts * @name Theme * @description Constants related to the theme */ export declare const DARK_THEME = "Dark"; export declare const LIGHT_THEME = "Light"; export type AppTheme = typeof DARK_THEME | typeof LIGHT_THEME; //# sourceMappingURL=theme.d.ts.map