import { FC } from 'react'; import './style'; interface Props { platforms: (string | { name: string; key: string; })[]; currentPlatform: string; onChange: (platform: string) => any; } declare const SwitchPlatform: FC; export default SwitchPlatform;