/// interface CreditPlaceInfoProps { place: string; outcome?: string; fontSize?: string; } export default function CreditPlaceInfo({ place, outcome, fontSize, }: CreditPlaceInfoProps): JSX.Element; export {};