/** * 简单的模板引擎,使用方式如下(空格自动忽略): * template('hello, {name}', { name: 'AntV' }); // hello, AntV * @param string * @param options */ export declare function template(source: string, data?: object): string;