import * as react_jsx_runtime0 from "react/jsx-runtime"; 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 StackTheme({ theme, children, nonce }: { theme?: ThemeConfig; children?: React.ReactNode; nonce?: string; }): react_jsx_runtime0.JSX.Element; //#endregion export { StackTheme, Theme }; //# sourceMappingURL=theme-provider.d.ts.map