import * as React from 'react';
import type { HTMLAttributesWithRootRef } from '../../types';
import { type HorizontalScrollProps } from '../HorizontalScroll/HorizontalScroll';
export interface SubnavigationBarProps extends HTMLAttributesWithRootRef, Pick {
/**
* Отключение возможности прокручивания компонента по горизонтали.
*/
fixed?: boolean;
/**
* Отключает отступы. Рекомендуется использовать с `mode="outline"` у [`SubnavigationButton`](https://vkui.io/components/subnavigation-button).
*/
noPadding?: boolean;
}
/**
* @see https://vkui.io/components/subnavigation-bar
*/
export declare const SubnavigationBar: ({ fixed, children, showArrows, noPadding, arrowSize, getScrollToLeft, getScrollToRight, scrollAnimationDuration, ...restProps }: SubnavigationBarProps) => React.ReactNode;
//# sourceMappingURL=SubnavigationBar.d.ts.map