import React from 'react'; import type { FC } from 'react'; interface TabSwitchProps { options: { value: string; title: string; }[]; value?: string; onChange?: (value: string) => void; className?: string; style?: React.CSSProperties; } declare const TabSwitch: FC; export default TabSwitch;