import type { ThemeObject } from "../../../style/themes/theme.types";
import { TabProps } from ".";
export type StyledTabProps = Pick<TabProps, "position" | "isTabSelected"> & {
    theme?: ThemeObject;
};
declare const StyledTab: import("styled-components").StyledComponent<"div", any, {
    theme: object;
} & Pick<TabProps, "position" | "isTabSelected"> & {
    theme?: ThemeObject;
}, "theme">;
export default StyledTab;
