import { Album } from "../Interfaces/Album";
interface PagePagination {
    offSet?: number;
    limit?: number;
}
interface IOptions {
    id: string;
    pagePagination?: PagePagination;
}
export declare function getAlbum<T extends IOptions>(options: T): Promise<Album>;
export {};
//# sourceMappingURL=getAlbum.d.ts.map