import React, { ReactNode } from 'react'; declare const SwitchTab: React.FC<{ selectedKey: string; tabItems: { disabled?: boolean | undefined; label: string | number | ReactNode; key: string; }[]; onClick: (key: string) => void; }>; export default SwitchTab;