import { options, entity, attribute, MusicReturn, MusicVideoReturn, ArtistReturn, AlbumReturn, SoftwareReturn, MovieReturn, EbookReturn, VoiceBookReturn, PodcastReturn, AllReturn } from "../@types/type"; export declare function getSong(name: string, options?: options): Promise; export declare function getSongVideo(name: string, options?: options): Promise; export declare function getArtist(name: string, options?: options): Promise; export declare function getAlbum(name: string, options?: options): Promise; export declare function getApp(name: string, options?: options): Promise; export declare function getMovie(name: string, options?: options): Promise; export declare function getBook(name: string, options?: options): Promise; export declare function getVoiceBook(name: string, options?: options): Promise; export declare function getPodcast(name: string, options?: options): Promise; export declare function getAll(name: string, entity: entity, attribute: attribute, options?: options): Promise;