import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { iconSizeSmall: string; iconSizeMedium: string; iconSizeLarge: string; iconSizeHuge: string; titleFontSizeSmall: string; titleFontSizeMedium: string; titleFontSizeLarge: string; titleFontSizeHuge: string; descriptionFontSizeSmall: string; descriptionFontSizeMedium: string; descriptionFontSizeLarge: string; descriptionFontSizeHuge: string; titleColor: string; descriptionColor: string; iconColor: string; iconBgColor: string; extraTextColor: string; }; export type EmptyThemeVars = ReturnType; declare const emptyLight: Theme<'Empty', EmptyThemeVars>; export default emptyLight; export type EmptyTheme = typeof emptyLight;