import React from "react";
interface DownloadLimitModalProps {
    countLimit: number;
    onDownloadAbort: () => void;
}
export declare function DownloadLimitModal({ countLimit, onDownloadAbort }: DownloadLimitModalProps): React.ReactElement;
export {};
