import type { ThemeObject } from '../../../../constants/interface'; export declare function useTheme(): { theme: import("vue").Ref; setTheme: (newTheme: string | ThemeObject) => void; setBackgroundColor: (backgroundColor: string | null) => void; setTextColor: (textColor: string | null) => void; };