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