import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { itemSize: string; color: string; colorHover: string; itemGap: string; iconSize: string; labelColor: string; labelSizeHover: string; labelColorHover: string; boxShadow: string; span: number; cols: number; }; export type IconBarThemeVars = ReturnType; declare const iconBarLight: Theme<'IconBar', IconBarThemeVars>; export default iconBarLight; export type IconBarTheme = typeof iconBarLight;