import { CustomerParams } from '../index'; export interface PassCustomerExecConfig { /** * 跳转的方式. href 普通地址的跳转, querystring。更新location.search参数 */ mode?: 'href' | 'querystring'; /** * 跳转的地址 */ href?: string; /** * 跳转带的参数 */ params?: Object | string; } export declare function locationCustomer(config: PassCustomerExecConfig, customParams: CustomerParams): boolean;