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 access role for user.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.AccessRoleEnum
 */
export interface AccessRoleEnum {
}
/**
 * Possible access role of a user.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.AccessRoleEnum.AccessRole
 */
export declare enum AccessRoleEnum_AccessRole {
    /**
     * 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,
    /**
     * Owns its account and can control the addition of other users.
     *
     * @generated from protobuf enum value: ADMIN = 2;
     */
    ADMIN = 2,
    /**
     * Can modify campaigns, but can't affect other users.
     *
     * @generated from protobuf enum value: STANDARD = 3;
     */
    STANDARD = 3,
    /**
     * Can view campaigns and account changes, but cannot make edits.
     *
     * @generated from protobuf enum value: READ_ONLY = 4;
     */
    READ_ONLY = 4,
    /**
     * Role for \"email only\" access. Represents an email recipient rather than
     * a true User entity.
     *
     * @generated from protobuf enum value: EMAIL_ONLY = 5;
     */
    EMAIL_ONLY = 5
}
declare class AccessRoleEnum$Type extends MessageType<AccessRoleEnum> {
    constructor();
    create(value?: PartialMessage<AccessRoleEnum>): AccessRoleEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AccessRoleEnum): AccessRoleEnum;
    internalBinaryWrite(message: AccessRoleEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AccessRoleEnum
 */
export declare const AccessRoleEnum: AccessRoleEnum$Type;
export {};
