import { default as React, ChangeEventHandler, CSSProperties } from 'react'; type SelectedStyle = { accentColor?: string; borderColor?: string; color?: string; }; interface SingleChoiceProps { options: string[] | any; checked: string; onChange?: ChangeEventHandler | undefined; style?: CSSProperties; selectedStyle?: SelectedStyle; type?: "modal1" | "modal2" | "modal3" | string; hoverBackground?: string | any; } declare const SingleChoice: React.FC; export default SingleChoice;