import { SQSClient } from '@aws-sdk/client-sqs'; import { ConfigService } from '@nestjs/config'; export declare class SqsClientFactory { private readonly config; private client; constructor(config: ConfigService); getClient(): SQSClient; }