import { QueueType } from '../../../../typings/class-types'; import { ARN, BaseObject, ChannelDeliveryPolicy } from '../../../client'; declare class Queue extends BaseObject { ownerId: string; companyId: string; region: string; name: string; attributes: { [key: string]: string; }; DeliveryPolicy: ChannelDeliveryPolicy; tags: { [key: string]: string; }; arn: ARN; static arn(companyId: string, region: string, name: string): ARN; constructor(item: QueueType); getMaxReceiveCount(maxReceiveCount: string): number; private getARN; } export { Queue };