12 lines
		
	
	
		
			444 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			444 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { ThemeCommonVars } from '../../_styles/common';
 | |
| import type { Theme } from '../../_mixins';
 | |
| declare function self(vars: ThemeCommonVars): {
 | |
|     colorError: string;
 | |
|     colorLoading: string;
 | |
|     height: string;
 | |
| };
 | |
| export type LoadingBarThemeVars = ReturnType<typeof self>;
 | |
| declare const loadingBarLight: Theme<'LoadingBar', LoadingBarThemeVars>;
 | |
| export default loadingBarLight;
 | |
| export type LoadingBarTheme = typeof loadingBarLight;
 |