@redocly/theme
Version:
Shared UI components lib
15 lines (14 loc) • 482 B
TypeScript
import React from 'react';
type Child = {
props: {
label: string;
} & TabsProps;
};
type TabsProps = React.PropsWithChildren<{
children: Child[];
className?: string;
}>;
export declare function Tabs({ children, className }: TabsProps): JSX.Element;
export declare const TabList: import("styled-components").StyledComponent<"ul", any, {}, never>;
export declare const TabContent: import("styled-components").StyledComponent<"div", any, {}, never>;
export {};