import * as Schema from "effect/Schema";
import * as ContainerHealth from "./ContainerHealth.generated.ts";
declare const ContainerState_base: Schema.Class<ContainerState, Schema.Struct<{
    readonly Status: Schema.Literals<readonly ["created", "restarting", "running", "removing", "paused", "exited", "dead"]>;
    readonly Running: Schema.Boolean;
    readonly Paused: Schema.Boolean;
    readonly Restarting: Schema.Boolean;
    readonly OOMKilled: Schema.Boolean;
    readonly Dead: Schema.Boolean;
    readonly Pid: Schema.decodeTo<Schema.BigInt, Schema.String, never, never>;
    readonly ExitCode: Schema.decodeTo<Schema.BigInt, Schema.String, never, never>;
    readonly Error: Schema.String;
    readonly StartedAt: Schema.String;
    readonly FinishedAt: Schema.String;
    readonly Health: Schema.optional<Schema.NullOr<typeof ContainerHealth.ContainerHealth>>;
}>, {}>;
export declare class ContainerState extends ContainerState_base {
}
export {};
//# sourceMappingURL=ContainerState.generated.d.ts.map