/** * @description - handlebars inline expression * @author - huang.jian */ /** * @typedef {object} InlineResource * * @property {string} type - stylesheet, script only * @property {string} content */ import { SafeString } from 'handlebars'; import { InlineResource } from './constant'; /** * @param {InlineResource} resource * * @return {SafeString|string} */ export declare function inline(resource?: InlineResource): SafeString | string;