import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { Message } from "@bufbuild/protobuf";
/**
 * Describes the file protos/perfetto/trace/trace_uuid.proto.
 */
export declare const file_protos_perfetto_trace_trace_uuid: GenFile;
/**
 * A random unique ID that identifies the trace.
 * This message has been introduced in v32. Prior to that, the UUID was
 * only (optionally) present in the TraceConfig.trace_uuid_msb/lsb fields.
 * This has been moved to a standalone packet to deal with new use-cases for
 * go/gapless-aot, where the same tracing session can be serialized several
 * times, in which case the UUID is changed on each snapshot and does not match
 * the one in the TraceConfig.
 *
 * @generated from message perfetto.protos.TraceUuid
 */
export type TraceUuid = Message<"perfetto.protos.TraceUuid"> & {
    /**
     * @generated from field: optional int64 msb = 1;
     */
    msb: bigint;
    /**
     * @generated from field: optional int64 lsb = 2;
     */
    lsb: bigint;
};
/**
 * Describes the message perfetto.protos.TraceUuid.
 * Use `create(TraceUuidSchema)` to create a new message.
 */
export declare const TraceUuidSchema: GenMessage<TraceUuid>;
//# sourceMappingURL=trace_uuid_pb.d.ts.map