import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare const self: (vars: ThemeCommonVars) => { lineHeight: string; titleFontWeight: string; titleTextColor: string; textColor: string; iconColorError: string; iconColorSuccess: string; iconColorInfo: string; iconColorWarning: string; fontSize: string; iconSize: string; headerBodyPadding: string; descriptionMargin: string; }; export type ResultThemeVars = ReturnType; declare const resultLight: Theme<'Result', ResultThemeVars>; export default resultLight; export type ResultTheme = typeof resultLight;