import * as Schema from "effect/Schema";
declare const SwarmTLSInfo_base: Schema.Class<SwarmTLSInfo, {
    TrustRoot: Schema.optional<typeof Schema.String>;
    CertIssuerSubject: Schema.optionalWith<typeof Schema.String, {
        nullable: true;
    }>;
    CertIssuerPublicKey: Schema.optionalWith<typeof Schema.String, {
        nullable: true;
    }>;
}, Schema.Struct.Encoded<{
    TrustRoot: Schema.optional<typeof Schema.String>;
    CertIssuerSubject: Schema.optionalWith<typeof Schema.String, {
        nullable: true;
    }>;
    CertIssuerPublicKey: Schema.optionalWith<typeof Schema.String, {
        nullable: true;
    }>;
}>, never, {
    readonly TrustRoot?: string | undefined;
} & {
    readonly CertIssuerSubject?: string | undefined;
} & {
    readonly CertIssuerPublicKey?: string | undefined;
}, {}, {}>;
export declare class SwarmTLSInfo extends SwarmTLSInfo_base {
}
export {};
//# sourceMappingURL=SwarmTLSInfo.generated.d.ts.map