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";
/**
 * Indicates status of prepopulation based on the rule.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.UserListPrepopulationStatusEnum
 */
export interface UserListPrepopulationStatusEnum {
}
/**
 * Enum describing possible user list prepopulation status.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus
 */
export declare enum UserListPrepopulationStatusEnum_UserListPrepopulationStatus {
    /**
     * 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,
    /**
     * Prepopoulation is being requested.
     *
     * @generated from protobuf enum value: REQUESTED = 2;
     */
    REQUESTED = 2,
    /**
     * Prepopulation is finished.
     *
     * @generated from protobuf enum value: FINISHED = 3;
     */
    FINISHED = 3,
    /**
     * Prepopulation failed.
     *
     * @generated from protobuf enum value: FAILED = 4;
     */
    FAILED = 4
}
declare class UserListPrepopulationStatusEnum$Type extends MessageType<UserListPrepopulationStatusEnum> {
    constructor();
    create(value?: PartialMessage<UserListPrepopulationStatusEnum>): UserListPrepopulationStatusEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UserListPrepopulationStatusEnum): UserListPrepopulationStatusEnum;
    internalBinaryWrite(message: UserListPrepopulationStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.UserListPrepopulationStatusEnum
 */
export declare const UserListPrepopulationStatusEnum: UserListPrepopulationStatusEnum$Type;
export {};
