import { ChangeEvent } from "react"; import { SelectOptionType } from "../../../SconeSelect/SconeSelect"; import "./Country-step.scss"; interface CountryStepProps { countryOptions: SelectOptionType[]; score: number; selectedCountry: string; uncertainty: number; countryName?: string; skipRoute: string; showSkip: boolean; onSkip: () => void; handleNextStep: () => void; updatePayload: (event: ChangeEvent) => void; } declare const CountryStep: (props: CountryStepProps) => JSX.Element; export default CountryStep;