import { FC } from "react";
interface FeedBackProps {
    title?: string;
    rootId: string;
    companyId: number;
    companyName: string;
    maxTextLength?: number;
    minTextLength?: number;
    showCountLeftText?: boolean;
    submitText?: string;
    successMessage?: string;
    errorMessage?: string;
    onClickEvent?: () => void;
    onSendEvent?: () => void;
    onCloseEvent?: () => void;
}
declare const FeedBack: FC<FeedBackProps>;
export default FeedBack;
