import { Tab, TabGroup } from "@headlessui/react"; import { FC, PropsWithChildren } from "react"; import { IconProps } from "../index.js"; type StyledTabProps = { name: string; icon?: FC; }; type StyledTabButtonType = StyledTabProps & { isSelected: boolean; }; type StyledTabTheme = "default" | "primary"; type ListProps = PropsWithChildren<{ theme?: StyledTabTheme; stretch?: boolean; }>; type StyledTabType = FC & { TabStyle: string; List: FC; ListDiv: FC; Button: FC; Group: typeof TabGroup; Panels: typeof Tab.Panels; Panel: typeof Tab.Panel; }; export declare const StyledTab: StyledTabType; export {}; //# sourceMappingURL=StyledTab.d.ts.map