import { CommonComponentProps } from "Types/common"; type TabProp = { key: string; title: T; panelComponent: JSX.Element; }; type MultiSwitchProps = CommonComponentProps & { tabs: Array>; selected: { title: T; value: string; }; stickyTabHeader?: boolean; customStyle?: Record; onSelect: (title: string) => void; }; export default function MultiSwitch(props: MultiSwitchProps): JSX.Element; export {};