import type { Lyrics } from ".";
import type { ILyricsSearchResultItem } from "../interfaces/ILyricsSearchResultItem";
export declare class LyricsSearchResultItem implements ILyricsSearchResultItem {
    title: string;
    artist: string;
    getLyrics: () => Promise<Lyrics>;
    constructor(title: string, artist: string, getLyrics: () => Promise<Lyrics>);
}
