import React from "react"; export interface MessageProps { visible?: boolean; onClose?: () => void; text?: React.ReactNode | string; bg?: string; } declare const FinalMessage: ({ visible, onClose, text, bg }: MessageProps) => JSX.Element; export default FinalMessage;