export declare const PIPEDRIVE_PATH_ROOT = "/pipedrive"; export declare const PIPEDRIVE_OBJECT_TYPES: readonly ["deal", "person", "organization", "activity"]; export type PipedrivePathObjectType = (typeof PIPEDRIVE_OBJECT_TYPES)[number]; export declare function encodePipedrivePathSegment(value: string): string; export declare function normalizePipedriveObjectType(objectType: string): PipedrivePathObjectType; export declare function tryNormalizePipedriveObjectType(objectType: string): PipedrivePathObjectType | undefined; export declare function normalizeNangoPipedriveModel(model: string): PipedrivePathObjectType; export declare function pipedriveDealPath(dealId: string, title?: string): string; export declare function pipedrivePersonPath(personId: string, name?: string): string; export declare function pipedriveOrganizationPath(organizationId: string, name?: string): string; export declare function pipedriveActivityPath(activityId: string, subject?: string): string; export declare const personPath: typeof pipedrivePersonPath; export declare const organizationPath: typeof pipedriveOrganizationPath; export declare function computePipedrivePath(objectType: string, objectId: string, displayName?: string): string; export declare function extractPipedriveIdFromPathSegment(segment: string): string; //# sourceMappingURL=path-mapper.d.ts.map