import type { Theme } from '../types/theme'; import { CssVarsThemeOptions, ThemeOptions } from './types'; export { useColorScheme } from './ThemeProviderWithVars'; /** * Generate a theme base on the options received. * @param options Takes an incomplete theme object and adds the missing parts. * @param args Deep merge the arguments with the about to be returned theme. * @returns A complete, ready-to-use theme object. */ export default function createTheme(options?: Omit & Pick & { cssVariables?: boolean; }, ...args: object[]): Theme;