import { type ImageFormat } from '../types/Image.js';
import type Show from '../types/Show.js';
interface ShowListParseOptions {
    imageBaseUrl: string;
    imageFormat: ImageFormat | null;
}
export default class ShowListParser {
    #private;
    static parseList(json: any, opts: ShowListParseOptions): Show[];
}
export {};
//# sourceMappingURL=ShowListParser.d.ts.map