import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { Message } from "@bufbuild/protobuf";
/**
 * Describes the file protos/perfetto/trace/power/power_rails.proto.
 */
export declare const file_protos_perfetto_trace_power_power_rails: GenFile;
/**
 * @generated from message perfetto.protos.PowerRails
 */
export type PowerRails = Message<"perfetto.protos.PowerRails"> & {
    /**
     * This is only emitted at the beginning of the trace.
     *
     * @generated from field: repeated perfetto.protos.PowerRails.RailDescriptor rail_descriptor = 1;
     */
    railDescriptor: PowerRails_RailDescriptor[];
    /**
     * @generated from field: repeated perfetto.protos.PowerRails.EnergyData energy_data = 2;
     */
    energyData: PowerRails_EnergyData[];
};
/**
 * Describes the message perfetto.protos.PowerRails.
 * Use `create(PowerRailsSchema)` to create a new message.
 */
export declare const PowerRailsSchema: GenMessage<PowerRails>;
/**
 * @generated from message perfetto.protos.PowerRails.RailDescriptor
 */
export type PowerRails_RailDescriptor = Message<"perfetto.protos.PowerRails.RailDescriptor"> & {
    /**
     * Index corresponding to the rail
     *
     * @generated from field: optional uint32 index = 1;
     */
    index: number;
    /**
     * Name of the rail
     *
     * @generated from field: optional string rail_name = 2;
     */
    railName: string;
    /**
     * Name of the subsystem to which this rail belongs
     *
     * @generated from field: optional string subsys_name = 3;
     */
    subsysName: string;
    /**
     * Hardware sampling rate (Hz).
     *
     * @generated from field: optional uint32 sampling_rate = 4;
     */
    samplingRate: number;
};
/**
 * Describes the message perfetto.protos.PowerRails.RailDescriptor.
 * Use `create(PowerRails_RailDescriptorSchema)` to create a new message.
 */
export declare const PowerRails_RailDescriptorSchema: GenMessage<PowerRails_RailDescriptor>;
/**
 * @generated from message perfetto.protos.PowerRails.EnergyData
 */
export type PowerRails_EnergyData = Message<"perfetto.protos.PowerRails.EnergyData"> & {
    /**
     * Index corresponding to RailDescriptor.index
     *
     * @generated from field: optional uint32 index = 1;
     */
    index: number;
    /**
     * Time since device boot(CLOCK_BOOTTIME) in milli-seconds.
     *
     * @generated from field: optional uint64 timestamp_ms = 2;
     */
    timestampMs: bigint;
    /**
     * Accumulated energy since device boot in microwatt-seconds (uWs).
     *
     * @generated from field: optional uint64 energy = 3;
     */
    energy: bigint;
};
/**
 * Describes the message perfetto.protos.PowerRails.EnergyData.
 * Use `create(PowerRails_EnergyDataSchema)` to create a new message.
 */
export declare const PowerRails_EnergyDataSchema: GenMessage<PowerRails_EnergyData>;
//# sourceMappingURL=power_rails_pb.d.ts.map