2024-01-29 09:26:07 +08:00

11 lines
422 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import { type Theme } from '../../_mixins';
export declare const self: (vars: ThemeCommonVars) => {
resizableTriggerColorHover: string;
resizableTriggerColor: string;
};
export type SplitThemeVars = ReturnType<typeof self>;
declare const themeLight: Theme<'Split', SplitThemeVars>;
export default themeLight;
export type SplitTheme = typeof themeLight;