import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare const self: (vars: ThemeCommonVars) => { textColor: string; iconColor: string; extraTextColor: string; iconModeGreyNone: number; iconModeGreySearch: number; iconModeNone: number; iconModeSearch: number; iconModeNoneBall: number; iconModeSearchBall: number; iconSizeSmall: number; iconSizeLarge: number; fontSizeSmall: string; fontSizeLarge: string; }; export type EmptyThemeVars = ReturnType; declare const emptyLight: Theme<'Empty', EmptyThemeVars>; export default emptyLight; export type EmptyTheme = typeof emptyLight;