import { FC } from "react";
/** Styles */
export interface FeedBackModalProps {
    title?: string;
    rootId: string;
    companyId: number;
    companyName: string;
    onClose: (toogle: boolean) => void;
    submitText?: string;
    successMessage?: string;
    errorMessage?: string;
    onSendEvent?: () => void;
    maxTextLength?: number;
    minTextLength?: number;
    showCountLeftText?: boolean;
}
declare const FeedBackModal: FC<FeedBackModalProps>;
export default FeedBackModal;
