import type { Variable } from '../types'; /** * This function takes a string and replace {variables} with given values. */ export declare function replaceVariables(value: string, variablesOrCallback: Variable[] | ((match: string) => string)): string; //# sourceMappingURL=replaceVariables.d.ts.map