import { BoxShadowColorSchemes, ColorAliases, ColorPalette, OrbitTheme } from "./orbitTheme"; export interface CreateThemeProps { name: string; colors: { white: string; black: string; gray: string; accent: ColorPalette; light: ColorAliases; dark: ColorAliases; }; boxShadows: BoxShadowColorSchemes; } export declare function createTheme({ name, colors: { black, white, gray, accent, light, dark }, boxShadows }: CreateThemeProps): OrbitTheme;