import * as React from "react"; import { type OutboundDialerPanelQueueSelectProps } from "../../internal-flex-commons/src"; import { InsightsQueue } from "../../models/InsightsModel"; export type { OutboundDialerPanelQueueSelectProps }; export interface OutboundDialerPanelQueueSelectState { queues: Array; } export declare class OutboundDialerPanelQueueSelect extends React.PureComponent { state: OutboundDialerPanelQueueSelectState; static defaultProps: { selectedQueueSid: string; }; componentDidMount(): Promise; render(): JSX.Element; }