import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { feedbackPadding: string; feedbackFontSizeSmall: string; feedbackFontSizeMedium: string; feedbackFontSizeLarge: string; feedbackLineHeightSmall: string; feedbackLineHeightMedium: string; feedbackLineHeightLarge: string; labelFontSizeLeftSmall: string; labelFontSizeLeftMedium: string; labelFontSizeLeftLarge: string; labelLineHeightLeftSmall: string; labelLineHeightLeftMedium: string; labelLineHeightLeftLarge: string; labelFontSizeTopSmall: string; labelFontSizeTopMedium: string; labelFontSizeTopLarge: string; labelLineHeightTopSmall: string; labelLineHeightTopMedium: string; labelLineHeightTopLarge: string; labelPaddingVertical: string; labelPaddingHorizontal: string; labelTextAlignVertical: string; labelTextAlignHorizontal: string; labelFontWeight: string; blankHeightSmall: string; blankHeightMedium: string; blankHeightLarge: string; labelTextColor: string; asteriskColor: string; feedbackTextColorError: string; feedbackTextColorWarning: string; feedbackTextColor: string; }; export type FormThemeVars = ReturnType; declare const formLight: Theme<'Form', FormThemeVars>; export default formLight; export type FormTheme = typeof formLight;