import { CssVarsThemeOptions } from './types'; export declare const createGetCssVar: (cssVarPrefix?: string) => (field: string | AdditionalVars, ...fallbacks: (string | AdditionalVars)[]) => string; /** * A default `createThemeWithVars` comes with a single color scheme, either `light` or `dark` based on the `defaultColorScheme`. * This is better suited for apps that only need a single color scheme. * * To enable built-in `light` and `dark` color schemes, either: * 1. provide a `colorSchemeSelector` to define how the color schemes will change. * 2. provide `colorSchemes.dark` will set `colorSchemeSelector: 'media'` by default. */ export default function createThemeWithVars(options?: CssVarsThemeOptions & { typography?: any; spacing?: any; breakpoints?: any; shadows?: any; sys?: any; }, ...args: any[]): any;