import * as React from 'react';
import type { HTMLAttributesWithRootRef } from '../../types';
export interface TabbarProps extends HTMLAttributesWithRootRef<HTMLDivElement> {
    /**
     * Флаг, который скрывает тень (Android) или границы (iOS).
     */
    plain?: boolean;
    /**
     * Задает расположение элементов (вертикальное/горизонтальное).
     */
    mode?: 'vertical' | 'horizontal' | 'auto';
}
/**
 * @see https://vkui.io/components/epic#tabbar
 */
export declare const Tabbar: ({ plain, mode, ...restProps }: TabbarProps) => React.ReactNode;
//# sourceMappingURL=Tabbar.d.ts.map