import * as React from 'react'; import type { HasComponent, HasRootRef } from '../../types'; export interface TabbarItemProps extends Omit, 'label'>, HasRootRef, HasComponent { /** * Выбранное состояние компонента. */ selected?: boolean; /** * Текст рядом с иконкой. */ label?: React.ReactNode; /** * Индикатор над иконкой. Принимает `` или ``. */ indicator?: React.ReactNode; } /** * @see https://vkui.io/components/epic#tabbar-item */ export declare const TabbarItem: ({ children, selected, indicator, label, href, Component, disabled, onFocus: onFocusProp, onBlur: onBlurProp, ...restProps }: TabbarItemProps) => React.ReactNode; //# sourceMappingURL=TabbarItem.d.ts.map