import { TabsProps } from ".";
export interface StyledTabsProps extends Pick<TabsProps, "headerWidth" | "position"> {
    isInSidebar?: boolean;
}
declare const StyledTabs: import("styled-components").StyledComponent<"div", any, {
    theme: object;
} & StyledTabsProps, "theme">;
export default StyledTabs;
