import { TabViewProps } from 'primereact/tabview';

export interface TabViewTogetherrops extends Omit<TabViewProps, 'activeIndex' | 'onTabChange'> {
    rtKey: string;
    headerClassName?: string;
}
export default function TabViewTogether({ rtKey, ...props }: TabViewTogetherrops): import("react/jsx-runtime").JSX.Element;
