import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class OutboundCallerConfig { OutboundCallerIdNumberArn?: Value; OutboundFlowArn?: Value; OutboundCallerIdName?: Value; constructor(properties: OutboundCallerConfig); } export interface QueueProperties { Status?: Value; HoursOfOperationArn: Value; Description?: Value; InstanceArn: Value; QuickConnectArns?: List>; OutboundCallerConfig?: OutboundCallerConfig; MaxContacts?: Value; Tags?: List; Name: Value; } export default class Queue extends ResourceBase { static OutboundCallerConfig: typeof OutboundCallerConfig; constructor(properties: QueueProperties); }