import type { Contract } from 'autumndb'; import type { JellyfishSDK } from '.'; /** * @namespace JellyfishSDK.integrations */ export declare class IntegrationsSdk { private sdk; constructor(sdk: JellyfishSDK); getAuthorizationUrl(user: Contract, integration: string): Promise; authorize(user: Contract, integration: string, code: string): Promise; }