import { CustomerParams } from '../index'; export interface PassCustomerExecConfig { /** * 设置的值 */ groups: { key: string; value: string; }[]; /** * 动作 */ action?: 'SET' | 'DELETE'; } export declare function localStoreCustomer(config: PassCustomerExecConfig, params: CustomerParams): Promise<{ key: string; value: string; }[]>;