import type { ORTBRequest } from "../src/types/ortb/request"; export type SchainConfig = { config: ORTBRequest['source']['schain']; }; declare module '../src/config' { interface Config { schain?: SchainConfig; } } export declare function applySchainConfig(ortb2Fragments: any): any;