import { ComponentProps, FC } from "react"; type TabProps = ComponentProps<"li"> & { href: string; ariaCurrent?: "page" | "true"; }; declare const Tab: FC; export default Tab; //# sourceMappingURL=tab.d.ts.map