import * as React from 'react';
import type { HasComponent, HasRootRef } from '../../types';
export interface TabbarItemProps extends Omit<React.AllHTMLAttributes<HTMLElement>, 'label'>, HasRootRef<HTMLElement>, HasComponent {
    /**
     * Выбранное состояние компонента.
     */
    selected?: boolean;
    /**
     * Текст рядом с иконкой.
     */
    label?: React.ReactNode;
    /**
     * Индикатор над иконкой. Принимает `<Badge mode="prominent" />` или `<Counter size="s" mode="prominent" />`.
     */
    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