import * as Stitches from "@stitches/react"; import { darkTheme, stitches, theme } from "./stitches.config"; export type CSS = Stitches.CSS; export type ScaleValue = Stitches.ScaleValue; export type { VariantProps, ComponentProps, CSSProperties, } from "@stitches/react"; type AVAILABLE_THEMES = { light: typeof theme; dark: typeof darkTheme; [additionalThemes: string]: string; }; export declare const AVAILABLE_THEMES: AVAILABLE_THEMES;