import { GetQueueAttributesCommandOutput, SQSClient } from '@aws-sdk/client-sqs'; import { BackgroundEntry } from '../background-entry.js'; import { BackgroundAwsConfig } from '../../config/background/background-aws-config.js'; import { InternalBackgroundEntry } from '../internal-background-entry.js'; import { AbstractBackgroundManager } from './abstract-background-manager.js'; import { SNSClient } from '@aws-sdk/client-sns'; export declare class AwsSqsSnsBackgroundManager extends AbstractBackgroundManager { private _awsConfig; private _sqs; private _sns; constructor(_awsConfig: BackgroundAwsConfig, _sqs: SQSClient, _sns: SNSClient); readonly backgroundManagerName: string; get awsConfig(): BackgroundAwsConfig; get sqs(): SQSClient; get sns(): SNSClient; addEntryToQueue(entry: BackgroundEntry, fireStartMessage?: boolean): Promise; fireImmediateProcessRequest(entry: BackgroundEntry): Promise; fireStartProcessingRequest(): Promise; fetchApproximateNumberOfQueueEntries(): Promise; fetchCurrentQueueAttributes(): Promise; writeMessageToSnsTopic(message: string): Promise; takeEntryFromBackgroundQueue(): Promise[]>; }