import { SQSClientConfig } from '@aws-sdk/client-sqs';
export declare const getSqsClientConfig: () => SQSClientConfig;
export declare const getQueueUrls: () => {
    communication: string | undefined;
    heavyProcessing: string | undefined;
    event: string | undefined;
};
export declare const validateQueueConfiguration: () => void;
export declare const getQueueFeatureFlags: () => {
    communicationQueueEnabled: boolean;
    heavyProcessingQueueEnabled: boolean;
    eventQueueEnabled: boolean;
};
