import { Channel } from '@nestjstools/messaging';
import { AmazonSqsChannelConfig } from './amazon-sqs.channel-config';
import { SQSClient } from '@aws-sdk/client-sqs';
export declare class AmazonSqsChannel extends Channel<AmazonSqsChannelConfig> {
    readonly client: SQSClient;
    constructor(config: AmazonSqsChannelConfig);
}
