import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { GpuCounterDescriptor } from "../../common/gpu_counter_descriptor_pb";
import type { Message } from "@bufbuild/protobuf";
/**
 * Describes the file protos/perfetto/trace/gpu/gpu_counter_event.proto.
 */
export declare const file_protos_perfetto_trace_gpu_gpu_counter_event: GenFile;
/**
 * @generated from message perfetto.protos.GpuCounterEvent
 */
export type GpuCounterEvent = Message<"perfetto.protos.GpuCounterEvent"> & {
    /**
     * The first trace packet of each session should include counter_spec.
     *
     * @generated from field: optional perfetto.protos.GpuCounterDescriptor counter_descriptor = 1;
     */
    counterDescriptor?: GpuCounterDescriptor;
    /**
     * @generated from field: repeated perfetto.protos.GpuCounterEvent.GpuCounter counters = 2;
     */
    counters: GpuCounterEvent_GpuCounter[];
    /**
     * optional. Identifier for GPU in a multi-gpu device.
     *
     * @generated from field: optional int32 gpu_id = 3;
     */
    gpuId: number;
};
/**
 * Describes the message perfetto.protos.GpuCounterEvent.
 * Use `create(GpuCounterEventSchema)` to create a new message.
 */
export declare const GpuCounterEventSchema: GenMessage<GpuCounterEvent>;
/**
 * @generated from message perfetto.protos.GpuCounterEvent.GpuCounter
 */
export type GpuCounterEvent_GpuCounter = Message<"perfetto.protos.GpuCounterEvent.GpuCounter"> & {
    /**
     * required. Identifier for counter.
     *
     * @generated from field: optional uint32 counter_id = 1;
     */
    counterId: number;
    /**
     * required. Value of the counter.
     *
     * @generated from oneof perfetto.protos.GpuCounterEvent.GpuCounter.value
     */
    value: {
        /**
         * @generated from field: int64 int_value = 2;
         */
        value: bigint;
        case: "intValue";
    } | {
        /**
         * @generated from field: double double_value = 3;
         */
        value: number;
        case: "doubleValue";
    } | {
        case: undefined;
        value?: undefined;
    };
};
/**
 * Describes the message perfetto.protos.GpuCounterEvent.GpuCounter.
 * Use `create(GpuCounterEvent_GpuCounterSchema)` to create a new message.
 */
export declare const GpuCounterEvent_GpuCounterSchema: GenMessage<GpuCounterEvent_GpuCounter>;
//# sourceMappingURL=gpu_counter_event_pb.d.ts.map