import * as Schema from "effect/Schema"; declare const ContainerNetworkStats_base: Schema.Class; instance_id: Schema.optional; }, Schema.Struct.Encoded<{ rx_bytes: typeof Schema.Number; rx_packets: typeof Schema.Number; rx_errors: typeof Schema.Number; rx_dropped: typeof Schema.Number; tx_bytes: typeof Schema.Number; tx_packets: typeof Schema.Number; tx_errors: typeof Schema.Number; tx_dropped: typeof Schema.Number; endpoint_id: Schema.optional; instance_id: Schema.optional; }>, never, { readonly rx_bytes: number; } & { readonly rx_packets: number; } & { readonly rx_errors: number; } & { readonly rx_dropped: number; } & { readonly tx_bytes: number; } & { readonly tx_packets: number; } & { readonly tx_errors: number; } & { readonly tx_dropped: number; } & { readonly endpoint_id?: string | undefined; } & { readonly instance_id?: string | undefined; }, {}, {}>; export declare class ContainerNetworkStats extends ContainerNetworkStats_base { } export {};