export interface IOptions { getVariables?: boolean; cleanVariables?: boolean; placeholderPrefix?: string; } export declare type TVariablesToValue = Array<{ key: string; value: any; }>; declare const setStringVariables: (value: string, variablesToValue?: TVariablesToValue, options_?: IOptions) => string; export default setStringVariables;