/**
 * Search result from Soulseek network.
 */
export interface SoulseekSearchResult {
    /** Username of file owner */
    user: string;
    /** Full file path on remote system */
    file: string;
    /** File size in bytes */
    size: number;
    /** Audio bitrate in kbps */
    bitrate: number;
    /** Upload speed in bytes/second */
    speed: number;
    /** Whether user has available slots */
    slots: boolean;
    /** Similarity score for search match */
    discoseekMatchingScore?: number;
}
//# sourceMappingURL=soulseek-search-result.d.ts.map