import { ServiceIntegrationType } from './ServiceIntegrationType'; export declare class ServiceIntegration { constructor(partial?: Partial); id: string; type: ServiceIntegrationType; token: string; secret: string; identityToken: string; identitySecret: string; scopes?: string; metadata?: Object; private merchant; }