import type { WebTheme } from '../types'; import type { ComponentsTheme } from '../components'; import type { BaseTheme } from '../components/utils'; export declare function recursiveComponentCSS(baseSelector: string, theme: BaseTheme): string; interface CreateComponentCSSParams { theme: Pick; components: Array; } /** * This will take a component theme and create the appropriate CSS for it. * */ export declare function createComponentCSS({ theme, components, }: CreateComponentCSSParams): string; export {};