/** * {} * @author yutent * @date 2025/01/03 10:39:13 */ import Smarty from 'smartyx' declare interface SmartyConfig { dir: string ext?: string } declare interface Engine { name: 'smarty' install(conf?: SmartyConfig): Smarty } export function createSmartyEngine(): Engine