import { IIntegrationSource } from '@qelos/global-types';
export type DecryptedSourceAuthentication<T = any> = IIntegrationSource & {
    authentication: T;
};
export declare function getIntegrationSource(tenant: string, sourceId: string): Promise<DecryptedSourceAuthentication>;
