declare const methods: { searchSongs: (query: string) => Promise; searchAlbums: (query: string) => Promise; searchArtist: (query: string) => Promise; searchPlaylists: (query: string) => Promise; search: (query: string) => Promise; 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 methods;