import { LastClient } from '../LastClient.js';
import { GetFormattedResponse, LastfmResponses } from '../types/responses.js';
import { LastfmAlbumInfoParams } from '../types/packages/album.js';
export declare class Album {
    private client;
    constructor(client: LastClient);
    getInfo(albumName: string, artistName: string, params?: LastfmAlbumInfoParams): Promise<GetFormattedResponse<LastfmResponses['album.getInfo']> | undefined>;
}
