import { BasicCustomerInstance, CustomerParams } from '../Controller'; export interface PassCustomerExecConfig { /** * 目标container组件的key */ model: string; /** * 写入的值 */ assign: Object | string; } export declare class PassCustomers implements BasicCustomerInstance { exec(config: PassCustomerExecConfig, params: CustomerParams): Promise; }