@grafana/ui
Version:
Grafana Components Library
10 lines (9 loc) • 366 B
TypeScript
import { HTMLAttributes, 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 {};