/** * 自动适配暗黑模式 * @params type 类型 * @params color 当前颜色 * @params theme 当前主题 */ export declare const getThemeColor: ({ type, color, theme, }: { type?: string | undefined; color: string | undefined; theme: 'dark' | 'light'; }) => string | undefined;