import { Episode } from "../model";
import { ScrapFunction } from "./type";
declare type EpisodeConstant = {
    [key: number]: Partial<Episode>;
};
declare type Options = {
    constant?: Partial<Episode>;
    episodeConstant?: EpisodeConstant;
    mergeDefault?: boolean;
};
export declare const createConstantScrapper: (options?: Options) => ScrapFunction;
export {};
