export interface Variables {
    [key: string]: string | undefined;
}
/**
 * Convert double curly brackets with variables into text string.
 * For example,
 * Hello, {{personName}}. -> Hello, Jerry.
 */
export default function replacer<V = Variables>(text: string, variables: V): string;
