export type HTTP_METHOD = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'; export type ENTITY_TYPE = 'lead' | 'person' | 'company' | 'opportunity' | 'task' | 'project'; export declare const ENTITY_PATH_MAP: { lead: string; person: string; company: string; opportunity: string; task: string; project: string; };