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