import React from 'react'; interface Props { username?: string; classes?: PostLeaveDisplayClasses; joinRoomOnClick?: (event: React.MouseEvent) => void; goToDashboardOnClick?: (event: React.MouseEvent) => void; getFeedbackOnClick?: (values: any) => void; src?: string; } interface PostLeaveDisplayClasses { root: string; rootBg: string; rootOverlay: string; sunnyFaceIconDiv: string; divider: string; buttonWrapper: string; feedbackSection: string; cancelFeedback: string; } export declare const PostLeaveDisplay: React.FC; export {};