export declare type DeliveryRequestConfig = CD2Config; export interface CD2Config { format: 'inlined' | 'linked'; depth: 'root' | 'all'; allowInvalid: boolean; } export declare class RequestConfigContainer { _config: Partial; DEFAULT_PARAMS_CD2: CD2Config; constructor(_config: Partial); get config(): DeliveryRequestConfig; createCDv2Config(): CD2Config & Partial; }