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