import { ThemeConfig } from './types';
/**
 * Default theme configuration
 */
export declare const defaultTheme: ThemeConfig;
/**
 * Tailwind CSS theme
 */
export declare const tailwindDefaultTheme: ThemeConfig;
/**
 * Material UI theme
 */
export declare const materialUIDefaultTheme: ThemeConfig;
/**
 * Merge user theme with default theme
 * This function ensures that all required theme properties are present
 * while giving absolute priority to user-defined properties
 */
export declare function mergeTheme(userTheme?: ThemeConfig): ThemeConfig;
