export declare const PhoneNumberNumberCapabilitiesItem: {
    readonly Sms: "SMS";
    readonly Voice: "VOICE";
    readonly Mms: "MMS";
};
export type PhoneNumberNumberCapabilitiesItem = (typeof PhoneNumberNumberCapabilitiesItem)[keyof typeof PhoneNumberNumberCapabilitiesItem];
export declare const PhoneNumberNumberType: {
    readonly LongCode: "LONG_CODE";
    readonly TollFree: "TOLL_FREE";
    readonly TenDlc: "TEN_DLC";
    readonly Simulator: "SIMULATOR";
};
/**
 * The type of phone number to request.
 */
export type PhoneNumberNumberType = (typeof PhoneNumberNumberType)[keyof typeof PhoneNumberNumberType];
export declare const PhoneNumberOptionalKeywordAction: {
    readonly AutomaticResponse: "AUTOMATIC_RESPONSE";
    readonly OptOut: "OPT_OUT";
    readonly OptIn: "OPT_IN";
};
/**
 * The action to perform when the keyword is used.
 */
export type PhoneNumberOptionalKeywordAction = (typeof PhoneNumberOptionalKeywordAction)[keyof typeof PhoneNumberOptionalKeywordAction];
export declare const PoolOptionalKeywordAction: {
    readonly AutomaticResponse: "AUTOMATIC_RESPONSE";
    readonly OptOut: "OPT_OUT";
    readonly OptIn: "OPT_IN";
};
/**
 * The action to perform when the keyword is used.
 */
export type PoolOptionalKeywordAction = (typeof PoolOptionalKeywordAction)[keyof typeof PoolOptionalKeywordAction];
export declare const ProtectConfigurationCountryRuleProtectStatus: {
    readonly Allow: "ALLOW";
    readonly Block: "BLOCK";
    readonly Monitor: "MONITOR";
    readonly Filter: "FILTER";
};
/**
 * The types of protection that can be used.
 */
export type ProtectConfigurationCountryRuleProtectStatus = (typeof ProtectConfigurationCountryRuleProtectStatus)[keyof typeof ProtectConfigurationCountryRuleProtectStatus];
