type Tab = {
    title: string;
    value: string;
    content?: string | React.ReactNode | any;
};
export declare const Tabs: ({ tabs: propTabs, containerClassName, activeTabClassName, tabClassName, contentClassName, }: {
    tabs: Tab[];
    containerClassName?: string;
    activeTabClassName?: string;
    tabClassName?: string;
    contentClassName?: string;
}) => import("react/jsx-runtime").JSX.Element;
export declare const FadeInDiv: ({ className, tabs, hovering, }: {
    className?: string;
    key?: string;
    tabs: Tab[];
    active: Tab;
    hovering?: boolean;
}) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=tabs.d.ts.map