import { BasicCustomerInstance, CustomerParams } from '../Controller'; export interface PassCustomerExecConfig { /** * 跳转的地址 */ href: string; /** * 跳转带的参数 */ params?: Object | string; } export declare class LocationCustomer implements BasicCustomerInstance { exec(config: PassCustomerExecConfig, customParams: CustomerParams): Promise; }