import { WithAll, WithOutAll } from "tools-packages"; export declare enum THEME_TYPE { light = "light", dark = "dark" } export interface Setting extends WithAll { ownerId: string; showDoubleDecimals: boolean; roundDecimalsInSummaries: boolean; expenseCategoryId: string; incomeCategoryId: string; headCategoryId: string; icon: string; } export interface AddSetting extends WithOutAll { } export interface UpdateSetting extends Partial { } export interface PayloadAddSetting extends Omit { } export interface PayloadUpdateSetting extends Omit { }