import React from 'react'; import { Tab } from './Tabs'; interface Props { active: string; tabs: Tab[]; className?: string; style: React.CSSProperties; contentRenderMethod?: 'active' | 'all'; } export declare function Content({ active, tabs, className, style, contentRenderMethod }: Props): JSX.Element; export {};