export type PipedriveQueryMethod = 'GET'; export interface PipedriveQueryRequest { method: PipedriveQueryMethod; endpoint: string; query?: Record; } export declare const PIPEDRIVE_DEALS_GET_ROUTE = "/v1/deals"; export declare const PIPEDRIVE_PERSONS_GET_ROUTE = "/v1/persons"; export declare const PIPEDRIVE_ORGANIZATIONS_GET_ROUTE = "/v1/organizations"; export declare const PIPEDRIVE_ACTIVITY_GET_ROUTE = "/v1/activities"; export declare function resolvePipedriveQueryRequest(path: string): PipedriveQueryRequest; //# sourceMappingURL=queries.d.ts.map