export declare function MessageFooter({ sentDate, readDate, deliveredDate, reaction, }: {
    readDate: string | null;
    sentDate: string | null;
    deliveredDate: string | null;
    reaction: string | null;
}): import("react/jsx-runtime").JSX.Element;
