import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
import type { IBinaryWriter } from "@protobuf-ts/runtime";
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
import type { IBinaryReader } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime";
/**
 * Container for enum describing possible statuses of a google voice call.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.GoogleVoiceCallStatusEnum
 */
export interface GoogleVoiceCallStatusEnum {
}
/**
 * Possible statuses of a google voice call.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus
 */
export declare enum GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus {
    /**
     * Not specified.
     *
     * @generated from protobuf enum value: UNSPECIFIED = 0;
     */
    UNSPECIFIED = 0,
    /**
     * Used for return value only. Represents value unknown in this version.
     *
     * @generated from protobuf enum value: UNKNOWN = 1;
     */
    UNKNOWN = 1,
    /**
     * The call was missed.
     *
     * @generated from protobuf enum value: MISSED = 2;
     */
    MISSED = 2,
    /**
     * The call was received.
     *
     * @generated from protobuf enum value: RECEIVED = 3;
     */
    RECEIVED = 3
}
declare class GoogleVoiceCallStatusEnum$Type extends MessageType<GoogleVoiceCallStatusEnum> {
    constructor();
    create(value?: PartialMessage<GoogleVoiceCallStatusEnum>): GoogleVoiceCallStatusEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GoogleVoiceCallStatusEnum): GoogleVoiceCallStatusEnum;
    internalBinaryWrite(message: GoogleVoiceCallStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.GoogleVoiceCallStatusEnum
 */
export declare const GoogleVoiceCallStatusEnum: GoogleVoiceCallStatusEnum$Type;
export {};
