export interface AdapterResourceConfig { readonly name: string; readonly path: string; readonly pathPattern: RegExp; readonly idPattern: RegExp; readonly schema: string; readonly createExample: string; } export declare const resources: readonly [{ readonly name: "deals"; readonly path: "/pipedrive/deals"; readonly pathPattern: RegExp; readonly idPattern: RegExp; readonly schema: "discovery/pipedrive/deals/.schema.json"; readonly createExample: "discovery/pipedrive/deals/.create.example.json"; }, { readonly name: "persons"; readonly path: "/pipedrive/persons"; readonly pathPattern: RegExp; readonly idPattern: RegExp; readonly schema: "discovery/pipedrive/persons/.schema.json"; readonly createExample: "discovery/pipedrive/persons/.create.example.json"; }, { readonly name: "organizations"; readonly path: "/pipedrive/organizations"; readonly pathPattern: RegExp; readonly idPattern: RegExp; readonly schema: "discovery/pipedrive/organizations/.schema.json"; readonly createExample: "discovery/pipedrive/organizations/.create.example.json"; }, { readonly name: "activities"; readonly path: "/pipedrive/activities"; readonly pathPattern: RegExp; readonly idPattern: RegExp; readonly schema: "discovery/pipedrive/activities/.schema.json"; readonly createExample: "discovery/pipedrive/activities/.create.example.json"; }]; export declare function findResourceByPath(path: string): AdapterResourceConfig | undefined; //# sourceMappingURL=resources.d.ts.map