16 lines
548 B
TypeScript
16 lines
548 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
|
|
import type { Theme } from '../../_mixins';
|
|
export declare const self: (vars: ThemeCommonVars) => {
|
|
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;
|