import * as React from 'react';
import type { HTMLAttributesWithRootRef } from '../../types';
export interface EpicProps extends HTMLAttributesWithRootRef {
/**
* Компонент Tabbar, который будет отображаться снизу.
*/
tabbar?: React.ReactNode;
/**
* `id` активного окна.
*/
activeStory: string;
/**
* Внутри `Epic` может находиться либо коллекция `Root`,
* либо коллекция `View`. У каждого элемента коллекции должен быть уникальный `id`.
*/
children: React.ReactElement | Iterable;
}
/**
* @see https://vkui.io/components/epic
*/
export declare const Epic: ({ activeStory, tabbar, children, ...restProps }: EpicProps) => React.ReactNode;
//# sourceMappingURL=Epic.d.ts.map