import type { ColorType } from './index';
export default function useTheme(themes?: Record<ColorType, string>, isDark?: boolean): {
    themeColors: import("vue").ComputedRef<Record<string, string>>;
};
