import React from "react"; export declare const TabContainer: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme | undefined; as?: React.ElementType | undefined; }, React.DetailedHTMLProps, HTMLDivElement>, {}>; export interface TabProps { label: string; element: JSX.Element; disabled?: boolean; visible?: boolean; } export declare const Tab: ({ label, disabled, element, visible }: TabProps) => React.JSX.Element;