import type { DbThemeConfig } from './theme.types'; export declare const defaultTheme: DbThemeConfig; /** * 辅助函数:获取点击透明度 * @param theme 主题配置 * @param intensity 强度级别:'default' | 'high' | 'low' * @returns 透明度值 (0-1) */ export declare const getActiveOpacity: (theme: { interaction: { activeOpacity: number; activeOpacityHigh: number; activeOpacityLow: number; }; }, intensity?: "default" | "high" | "low") => number;