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";
import { CustomizerAttributeTypeEnum_CustomizerAttributeType } from "../enums/customizer_attribute_type";
/**
 * A customizer value that is referenced in customizer linkage entities
 * like CustomerCustomizer, CampaignCustomizer, etc.
 *
 * @generated from protobuf message google.ads.googleads.v11.common.CustomizerValue
 */
export interface CustomizerValue {
    /**
     * Required. The data type for the customizer value. It must match the attribute type.
     * The string_value content must match the constraints associated with the
     * type.
     *
     * @generated from protobuf field: google.ads.googleads.v11.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType type = 1;
     */
    type: CustomizerAttributeTypeEnum_CustomizerAttributeType;
    /**
     * Required. Value to insert in creative text. Customizer values of all types are stored
     * as string to make formatting unambiguous.
     *
     * @generated from protobuf field: string string_value = 2;
     */
    stringValue: string;
}
declare class CustomizerValue$Type extends MessageType<CustomizerValue> {
    constructor();
    create(value?: PartialMessage<CustomizerValue>): CustomizerValue;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomizerValue): CustomizerValue;
    internalBinaryWrite(message: CustomizerValue, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.common.CustomizerValue
 */
export declare const CustomizerValue: CustomizerValue$Type;
export {};
