declare type FormatterOptions = {
    keyPrefix?: string;
    keySuffix?: string;
    asRegExp?: boolean;
};
export declare function format(templatedString: string, dictionary: {
    [key: string]: string;
}, options?: FormatterOptions): string;
export default format;
