/** * Functions to do some pre-race checks */ import { QbittorrentTorrent } from "../qbittorrent/api.js"; import { Settings } from "../utils/config.js"; export declare const concurrentRacesCheck: (settings: Settings, torrents: QbittorrentTorrent[]) => boolean; export declare const getTorrentsToPause: (settings: Settings, torrents: QbittorrentTorrent[]) => QbittorrentTorrent[];