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 summary row setting in request parameter.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.SummaryRowSettingEnum
 */
export interface SummaryRowSettingEnum {
}
/**
 * Enum describing return summary row settings.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.SummaryRowSettingEnum.SummaryRowSetting
 */
export declare enum SummaryRowSettingEnum_SummaryRowSetting {
    /**
     * Not specified.
     *
     * @generated from protobuf enum value: UNSPECIFIED = 0;
     */
    UNSPECIFIED = 0,
    /**
     * Represent unknown values of return summary row.
     *
     * @generated from protobuf enum value: UNKNOWN = 1;
     */
    UNKNOWN = 1,
    /**
     * Do not return summary row.
     *
     * @generated from protobuf enum value: NO_SUMMARY_ROW = 2;
     */
    NO_SUMMARY_ROW = 2,
    /**
     * Return summary row along with results. The summary row will be returned
     * in the last batch alone (last batch will contain no results).
     *
     * @generated from protobuf enum value: SUMMARY_ROW_WITH_RESULTS = 3;
     */
    SUMMARY_ROW_WITH_RESULTS = 3,
    /**
     * Return summary row only and return no results.
     *
     * @generated from protobuf enum value: SUMMARY_ROW_ONLY = 4;
     */
    SUMMARY_ROW_ONLY = 4
}
declare class SummaryRowSettingEnum$Type extends MessageType<SummaryRowSettingEnum> {
    constructor();
    create(value?: PartialMessage<SummaryRowSettingEnum>): SummaryRowSettingEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SummaryRowSettingEnum): SummaryRowSettingEnum;
    internalBinaryWrite(message: SummaryRowSettingEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.SummaryRowSettingEnum
 */
export declare const SummaryRowSettingEnum: SummaryRowSettingEnum$Type;
export {};
