import * as Schema from "effect/Schema";
declare const SystemRuntimeWithStatus_base: Schema.Class<SystemRuntimeWithStatus, {
    status: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
        nullable: true;
    }>;
    path: Schema.optional<typeof Schema.String>;
    runtimeArgs: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
        nullable: true;
    }>;
    runtimeType: Schema.optional<typeof Schema.String>;
    options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.Object>, {
        nullable: true;
    }>;
}, Schema.Struct.Encoded<{
    status: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
        nullable: true;
    }>;
    path: Schema.optional<typeof Schema.String>;
    runtimeArgs: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
        nullable: true;
    }>;
    runtimeType: Schema.optional<typeof Schema.String>;
    options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.Object>, {
        nullable: true;
    }>;
}>, never, {
    readonly status?: {
        readonly [x: string]: string;
    } | undefined;
} & {
    readonly path?: string | undefined;
} & {
    readonly runtimeArgs?: readonly string[] | undefined;
} & {
    readonly runtimeType?: string | undefined;
} & {
    readonly options?: {
        readonly [x: string]: object;
    } | undefined;
}, {}, {}>;
export declare class SystemRuntimeWithStatus extends SystemRuntimeWithStatus_base {
}
export {};
//# sourceMappingURL=SystemRuntimeWithStatus.generated.d.ts.map