export declare class LookupActionHandler { broker: any; constructor(broker: any); add(objectConfig: any): Promise; deleteAll(objectConfig: any): Promise; deleteAllLookups(objectConfig: any): Promise; addObjectLookups(objectConfig: any): Promise; getDetailKey(objectApiName: any, detailApiName: any): string; getDetails(objectApiName: string): Promise; getDetailsInfoKey(objectApiName: string): string; getDetailsInfo(objectApiName: string): Promise; removeDetail(objectApiName: any, detailObjectApiName: string, detailField: any): Promise; addDetail(objectApiName: any, detailObjectApiName: string, detailField: any): Promise; deleteObjectLookups(objectApiName: string): Promise; }