import React from "react"; //#region src/providers/theme-provider.d.ts type Colors = { background: string; foreground: string; card: string; cardForeground: string; popover: string; popoverForeground: string; primary: string; primaryForeground: string; secondary: string; secondaryForeground: string; muted: string; mutedForeground: string; accent: string; accentForeground: string; destructive: string; destructiveForeground: string; border: string; input: string; ring: string; }; type Theme = { light: Colors; dark: Colors; radius: string; }; type ThemeConfig = { light?: Partial; dark?: Partial; } & Partial>; declare function HexclaveTheme({ theme, children, nonce }: { theme?: ThemeConfig; children?: React.ReactNode; nonce?: string; }): import("react/jsx-runtime").JSX.Element; /** * @deprecated Use `HexclaveTheme` from the `@hexclave/*` package instead — same symbol, new brand name. See https://docs.hexclave.com/migration. */ declare const StackTheme: typeof HexclaveTheme; //#endregion export { StackTheme as n, Theme as r, HexclaveTheme as t }; //# sourceMappingURL=theme-provider-D9_ngSbi.d.ts.map