import { default as React } from 'react'; export interface FeedbackTextProps { error?: boolean; feedbackAriaLabel: string; feedbackCharacterLimitText?: string; feedbackDescriptionPlaceHolder?: string; feedbackLabel: string; feedbackMessage?: string; sendAnalytics: () => void; setFeedbackMessage: (event?: React.MouseEvent | string | undefined) => void; validateForm: (event?: React.MouseEvent | string | undefined) => void; } export declare const BeatFeedbackText: React.FC;