import { FC } from 'react'; interface ThankYouMessageProps { showEndChatDialog: boolean; onClose?: () => void; onStart?: () => void; } export declare const ThankYouMessage: FC; export {};