import { IFeidaoAiBrowserComponent } from '../../interfaces'; /** * 渲染 * @param fd 系统变量 * @param data 要渲染的数据 * @param tpl 渲染片段tpl * @param panme p块的名称 * @param position 'after' | 'before' | 'firstin' | 'lastin' | 'replace' | 'inner'` 渲染位置 * @example render(fd,data,tpl,panme,position); */ export default function render(fd: IFeidaoAiBrowserComponent, data: unknown, tpl: string, panme: string, position: 'after' | 'before' | 'firstin' | 'lastin' | 'replace' | 'inner'): void;