/** * Populates a template object with data from another object. * @param template The template object to be populated. * @param data The data object to populate the template with. * @returns The populated template object. */ export default function fillTemplate(template: T, data: any): T;