/**
 * Pool of phone numbers used for outbound calls.
 */
export interface OutboundNumberPool {
    /** E.164 formatted phone numbers available for outbound calls. */
    active: string[];
    /** E.164 formatted phone numbers that are blocked from being used. */
    blocked: string[];
}
