import { IBizLabTemplate } from '@ibizlab/template'; /** * 自定义参数助手 * * @export * @class CustomParams */ export declare class CustomParams { /** * Creates an instance of CustomParams. * @param {IBizLabTemplate} template * @memberof CustomParams */ constructor(template: IBizLabTemplate); /** * 获取部件参数 * * @param {*} ctrl * @memberof CustomParams */ getCtrlParams(ctrl: any): string; /** * 获取编辑器参数 * * @param {*} params * @memberof CustomParams */ getEditorParams(editor: any): string; /** * 获取自定义参数 * * @param {*} params * @return {*} {string} * @memberof CustomParams */ getCustomParams(params: any): string; } //# sourceMappingURL=custom-params.d.ts.map