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 the method by which a simulation modifies
 * a field.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.SimulationModificationMethodEnum
 */
export interface SimulationModificationMethodEnum {
}
/**
 * Enum describing the method by which a simulation modifies a field.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.SimulationModificationMethodEnum.SimulationModificationMethod
 */
export declare enum SimulationModificationMethodEnum_SimulationModificationMethod {
    /**
     * 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 values in a simulation were applied to all children of a given
     * resource uniformly. Overrides on child resources were not respected.
     *
     * @generated from protobuf enum value: UNIFORM = 2;
     */
    UNIFORM = 2,
    /**
     * The values in a simulation were applied to the given resource.
     * Overrides on child resources were respected, and traffic estimates
     * do not include these resources.
     *
     * @generated from protobuf enum value: DEFAULT = 3;
     */
    DEFAULT = 3,
    /**
     * The values in a simulation were all scaled by the same factor.
     * For example, in a simulated TargetCpa campaign, the campaign target and
     * all ad group targets were scaled by a factor of X.
     *
     * @generated from protobuf enum value: SCALING = 4;
     */
    SCALING = 4
}
declare class SimulationModificationMethodEnum$Type extends MessageType<SimulationModificationMethodEnum> {
    constructor();
    create(value?: PartialMessage<SimulationModificationMethodEnum>): SimulationModificationMethodEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SimulationModificationMethodEnum): SimulationModificationMethodEnum;
    internalBinaryWrite(message: SimulationModificationMethodEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.SimulationModificationMethodEnum
 */
export declare const SimulationModificationMethodEnum: SimulationModificationMethodEnum$Type;
export {};
