import { AuthService } from '../auth/auth.service'; import { AWeberIntegrationsQuery } from './integrations.dto'; import { AWeberIntegration } from './integrations.types'; export declare class IntegrationsService { private readonly authService; constructor(authService: AuthService); getIntegrations(accountId: number, params?: AWeberIntegrationsQuery): Promise; getIntegration(accountId: number, integrationId: number): Promise; }