/// declare type Props = { url: string; selected?: boolean; correct?: boolean; }; declare const PictureChoice: ({ url, selected, correct }: Props) => JSX.Element; export default PictureChoice;