import { type ImageFormat } from '../types/Image.js';
import { type LabelArtist } from '../types/Label.js';
interface LabelArtistsParseOptions {
    labelUrl: string;
    imageFormat: ImageFormat | null;
}
export default class LabelArtistsParser {
    static parseLabelArtists(html: string, opts: LabelArtistsParseOptions): LabelArtist[];
}
export {};
//# sourceMappingURL=LabelArtistsParser.d.ts.map