15 lines
492 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';
declare const self: (vars: ThemeCommonVars) => {
color: string;
colorEnd: string;
borderRadius: string;
heightSmall: string;
heightMedium: string;
heightLarge: string;
};
export type SkeletonThemeVars = ReturnType<typeof self>;
export declare const skeletonLight: Theme<'Skeleton', SkeletonThemeVars>;
export type SkeletonTheme = typeof skeletonLight;
export {};