import * as Schema from "effect/Schema"; import * as ContainerCPUUsage from "./ContainerCPUUsage.generated.js"; import * as ContainerThrottlingData from "./ContainerThrottlingData.generated.js"; declare const ContainerCPUStats_base: Schema.Class; system_cpu_usage: Schema.optional; online_cpus: Schema.optional; throttling_data: Schema.optionalWith; }, Schema.Struct.Encoded<{ cpu_usage: Schema.NullOr; system_cpu_usage: Schema.optional; online_cpus: Schema.optional; throttling_data: Schema.optionalWith; }>, never, { readonly cpu_usage: ContainerCPUUsage.ContainerCPUUsage | null; } & { readonly system_cpu_usage?: number | undefined; } & { readonly online_cpus?: number | undefined; } & { readonly throttling_data?: ContainerThrottlingData.ContainerThrottlingData | undefined; }, {}, {}>; export declare class ContainerCPUStats extends ContainerCPUStats_base { } export {};