export interface ISwitchOption { key: string; title: string; } export interface ITabSwitchProps { options: ISwitchOption[]; className?: string; onChange?(option: ISwitchOption): any; testId?: string; }