import { AttributifyConfig } from '../types/types'; import { ThemeVariant } from './themeProcessor'; export interface AutoThemeVariantResult { hasMultipleThemes: boolean; variants: ThemeVariant[]; } /** * Detects if a value exists as a key in multiple themes and generates automatic theme variants */ export declare function detectAutoThemeVariants(value: string, config: AttributifyConfig): AutoThemeVariantResult;