import { ReactNode } from 'react'; import { QuestionPlatform } from './types'; declare const TRUE_ID = "true"; declare const FALSE_ID = "false"; export interface TrueFalseOptionConfig { id: typeof TRUE_ID | typeof FALSE_ID; label: ReactNode; hint?: ReactNode; } export interface TrueFalseOptionsProps { platform: QuestionPlatform; options: TrueFalseOptionConfig[]; value: string | null; onChange: (isTrue: boolean) => void; disabled?: boolean; optionStatus?: Record; } export declare const TrueFalseOptions: ({ platform, options, value, onChange, disabled, optionStatus, }: TrueFalseOptionsProps) => import("react").JSX.Element; export {};