import { SoulseekSearchResult } from './soulseek-search-result';
/**
 * Options for download operation.
 */
export interface DownloadOptions {
    /** Search result to download */
    file: SoulseekSearchResult;
    /** Local path to save file */
    path: string;
}
//# sourceMappingURL=download-options.d.ts.map