import type { ClassValue } from "clsx";
import * as themes from "./themes.js";
export type ThemeConfig = {
    [K in keyof typeof themes]?: (typeof themes)[K]["slots"] extends undefined ? ClassValue : Partial<{
        [L in keyof (typeof themes)[K]["slots"]]: ClassValue;
    }>;
};
