export interface ParamsModel { [key: string]: any; } export declare type SubstitutionParamsModel = ParamsModel; declare type HasSubstitutionParams = { substitutionParams: SubstitutionParamsModel; }; export declare type WithSubstitutionParams = HasSubstitutionParams & T; export declare type WithOptionalSubstitutionParams = Partial & T; export {};