import React, { ChangeEvent } from 'react'; export interface RowLayoutClasses { feedbackSection?: string; feedbackIconSection?: string; feedbackColumn?: string; cancelFeedback?: string; checkBoxLabel?: string; feedbackRow?: string; rowItem?: string; } export interface RowLayoutProps { classes?: RowLayoutClasses; choice: string; onChoiceChangeHandler: (event: ChangeEvent) => void; } export declare const RowLayout: React.FunctionComponent;