2024-01-29 09:26:07 +08:00
|
|
|
import type { Theme } from '../../_mixins';
|
2024-08-02 18:19:39 +08:00
|
|
|
export declare function self(): {
|
2024-01-29 09:26:07 +08:00
|
|
|
dotSize: string;
|
|
|
|
dotColor: string;
|
|
|
|
dotColorActive: string;
|
|
|
|
dotColorFocus: string;
|
|
|
|
dotLineWidth: string;
|
|
|
|
dotLineWidthActive: string;
|
|
|
|
arrowColor: string;
|
|
|
|
};
|
|
|
|
export type CarouselThemeVars = ReturnType<typeof self>;
|
|
|
|
declare const carouselLight: Theme<'Carousel', CarouselThemeVars>;
|
|
|
|
export default carouselLight;
|
|
|
|
export type CarouselTheme = typeof carouselLight;
|