export type MessageVideoProps = {
    src: string;
    isLoading?: boolean;
    checkAlive?: () => Promise<boolean>;
    refreshSrc?: () => void;
    downloadVideo?: () => void;
};
export declare const MessageVideo: React.FC<MessageVideoProps>;
