19 lines
657 B
TypeScript
Raw Normal View History

2025-04-15 16:38:39 +08:00
import type { Theme } from '../../../_mixins';
import type { ThemeCommonVars } from '../../../_styles/common';
export declare function self(vars: ThemeCommonVars): {
height: string;
width: string;
borderRadius: string;
2025-04-15 16:38:39 +08:00
color: string;
colorHover: string;
railInsetHorizontalBottom: string;
railInsetHorizontalTop: string;
railInsetVerticalRight: string;
railInsetVerticalLeft: string;
railColor: string;
2025-04-15 16:38:39 +08:00
};
export type ScrollbarThemeVars = ReturnType<typeof self>;
declare const scrollbarLight: Theme<'Scrollbar', ScrollbarThemeVars>;
export default scrollbarLight;
export type ScrollbarTheme = typeof scrollbarLight;