import { ComponentProps, FC } from "react"; type TabPanelProps = ComponentProps<"div"> & { index?: number; parentId?: string; selected?: boolean; }; declare const TabPanel: FC; export default TabPanel; //# sourceMappingURL=tab-panel.d.ts.map