export interface themeProps { modalBackground?: string; cardColor?: string; textColor?: string; secondaryTextColor?: string; buttonColor?: string; buttonTextColor?: string; buttonShadow?: string; dropDownBorder?: string; } export declare const themeAtom: import("jotai").PrimitiveAtom & { init: themeProps; }; export declare const useUpdateTheme: () => (NewTheme: Partial) => void;