import { type HTMLAttributes, type ReactNode } from 'react';
interface Props extends HTMLAttributes<HTMLDivElement> {
    children: ReactNode;
}
/**
 * https://developers.grafana.com/ui/latest/index.html?path=/docs/navigation-tabs--docs
 */
export declare const TabContent: ({ children, className, ...restProps }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
