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";
/**
 * Source of the asset or asset link for who generated the entity.
 * For example, advertiser or automatically created.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.AssetSourceEnum
 */
export interface AssetSourceEnum {
}
/**
 * Enum describing possible source of asset.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.AssetSourceEnum.AssetSource
 */
export declare enum AssetSourceEnum_AssetSource {
    /**
     * 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 asset or asset link is provided by advertiser.
     *
     * @generated from protobuf enum value: ADVERTISER = 2;
     */
    ADVERTISER = 2,
    /**
     * The asset or asset link is generated by Google.
     *
     * @generated from protobuf enum value: AUTOMATICALLY_CREATED = 3;
     */
    AUTOMATICALLY_CREATED = 3
}
declare class AssetSourceEnum$Type extends MessageType<AssetSourceEnum> {
    constructor();
    create(value?: PartialMessage<AssetSourceEnum>): AssetSourceEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AssetSourceEnum): AssetSourceEnum;
    internalBinaryWrite(message: AssetSourceEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AssetSourceEnum
 */
export declare const AssetSourceEnum: AssetSourceEnum$Type;
export {};
