11 lines
424 B
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import type { ThemeCommonVars } from '../../../_styles/common';
import type { Theme } from '../../../_mixins';
export declare const self: (vars: ThemeCommonVars) => {
color: string;
colorHover: string;
};
export type ScrollbarThemeVars = ReturnType<typeof self>;
declare const scrollbarLight: Theme<'Scrollbar', ScrollbarThemeVars>;
export default scrollbarLight;
export type ScrollbarTheme = typeof scrollbarLight;