import { FC, ReactElement } from 'react'; export interface Props { extraInfo?: string; hasDarkTooltips?: boolean; noLabel: string | ReactElement; onClick: (answer: boolean) => void; question: string | ReactElement; value?: boolean; yesLabel: string | ReactElement; } declare const YesNoQuestion: FC; export default YesNoQuestion;