/// interface Props { id: string; symbol: string; logo: string; onChoose: (val: string) => void; onUnpin: (val: string) => void; } declare const PinnedToken: ({ id, symbol, logo, onChoose, onUnpin }: Props) => JSX.Element; export default PinnedToken;