import { Album, Lyrics, SongDetails, Playlist } from '../interfaces/Songs'; declare const _default: { getSong: (id: string, lyrics?: boolean | undefined) => Promise; getLyrics: (id: string) => Promise; getAlbum: (id: string, lyrics?: boolean | undefined) => Promise; getPlaylist: (id: string, lyrics?: boolean | undefined) => Promise; getSongs: (ids: string[], lyrics?: boolean | undefined) => Promise; }; export default _default;