declare type EmailVariable = { field: string; value: string; }; declare type EmailVariables = EmailVariable[]; export declare const replaceDoubleCurlys: (str: string, variables?: EmailVariables | undefined) => string; export {};