import { UnknownRecord } from "../ts/types.js"; /** * Replaces values in a given `templatestring` with contentKeys from a given `contentKeys` object. * @param contentKeys Object containing key value pairs of contentKeys to fill template string with * @param templatestring string containing templates to fill * @example * const contentKeys = { * "title": "This is a title", * "info": { * "desc": "This is some info!" * } * } * const template = "Wow! {title}... Here is some info: {info.desc}" * * fillTemplate(contentKeys, template) // => Wow! This is a title... Here is some info: This is some info!" */ export declare const fillTemplate: (contentKeys: UnknownRecord, templatestring: string, parent?: string) => string; //# sourceMappingURL=fillTemplate.d.ts.map