import { VirtualNumberIsoCountryCodeEnum } from './VirtualNumberIsoCountryCodeEnum';
/** Virtual numbers */
export interface VirtualNumber {
    /** The ISO formated country code of the number */
    countryCode: VirtualNumberIsoCountryCodeEnum;
    /** The virtual number */
    number: string;
}
//# sourceMappingURL=VirtualNumber.d.ts.map