import { GlobalToken } from "antd"; /** * 设置颜色透明度 * @param {string} colorKey 色值 * @param { number | string} opacity 透明度 * * @return string */ export declare const setAlphaColor: (colorKey?: string, opacity?: number | string) => string; export declare const setLightenColor: (colorKey?: string, amount?: number) => string; export declare const setBrightenColor: (colorKey?: string, amount?: number) => string; export declare const scrollBar: (token: GlobalToken) => { "&::-webkit-scrollbar-track-piece": { background: string; }; "&::-webkit-scrollbar": { width: string; height: string; }; "&::-webkit-scrollbar-thumb": { background: string; borderRadius: string; }; }; export declare const scrollBarPrimary: (token: GlobalToken) => { "&::-webkit-scrollbar-track-piece": { background: string; }; "&::-webkit-scrollbar": { width: string; height: string; }; "&::-webkit-scrollbar-thumb": { background: string; borderRadius: string; }; };