import * as Schema from "effect/Schema";
import * as SwarmConfigSpec from "./SwarmConfigSpec.generated.js";
declare const SwarmConfig_base: Schema.Class<SwarmConfig, {
    Spec: Schema.NullOr<typeof SwarmConfigSpec.SwarmConfigSpec>;
    Version: Schema.optionalWith<typeof import("./SwarmVersion.generated.js").SwarmVersion, {
        nullable: true;
    }>;
    CreatedAt: Schema.optionalWith<typeof Schema.DateFromString, {
        nullable: true;
    }>;
    UpdatedAt: Schema.optionalWith<typeof Schema.DateFromString, {
        nullable: true;
    }>;
    ID: typeof Schema.String;
}, Schema.Struct.Encoded<{
    Spec: Schema.NullOr<typeof SwarmConfigSpec.SwarmConfigSpec>;
    Version: Schema.optionalWith<typeof import("./SwarmVersion.generated.js").SwarmVersion, {
        nullable: true;
    }>;
    CreatedAt: Schema.optionalWith<typeof Schema.DateFromString, {
        nullable: true;
    }>;
    UpdatedAt: Schema.optionalWith<typeof Schema.DateFromString, {
        nullable: true;
    }>;
    ID: typeof Schema.String;
}>, never, {
    readonly ID: string;
} & {
    readonly CreatedAt?: Date | undefined;
} & {
    readonly Version?: import("./SwarmVersion.generated.js").SwarmVersion | undefined;
} & {
    readonly UpdatedAt?: Date | undefined;
} & {
    readonly Spec: SwarmConfigSpec.SwarmConfigSpec | null;
}, {}, {}>;
export declare class SwarmConfig extends SwarmConfig_base {
}
export {};
//# sourceMappingURL=SwarmConfig.generated.d.ts.map