import { FC, CSSProperties } from 'react'; import './style'; declare const PlatformCard: FC<{ platform: string | { name: string; key: string; }; onClick: any; className?: any; style?: CSSProperties; }>; export default PlatformCard;