import type { ReactNode } from 'react'; export interface UserQuestionAnswerLabels { answer?: string; answers?: string; } export interface UserQuestionAnswerProps { answers: Record; showHeader?: boolean; labels?: UserQuestionAnswerLabels; className?: string; questionAnswerIcon?: ReactNode; } export declare const UserQuestionAnswer: import("react").NamedExoticComponent;