import { List } from "./interfaces";
declare type ObjType = "artist" | "album" | "playlist" | "track";
/**
 * Getting an object/objects.
 * @param {ObjType} type The type of the object.
 * @param {List} ids The unique identifier of the object or objects.
 * @returns The requested object.
 */
export declare const list: (type: ObjType, ids: List) => [string, URLSearchParams];
export {};
//# sourceMappingURL=utils.d.ts.map