import { Base } from '../base';
export declare class Song extends Base {
    getUrl(songId: string): Promise<any>;
    getDetail(songId: string): Promise<any>;
    getLyrics(songId: string): Promise<any>;
}
