import * as Schema from "effect/Schema";
declare const ComponentVersion_base: Schema.Class<ComponentVersion, {
    Name: typeof Schema.String;
    Version: typeof Schema.String;
    Details: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
        nullable: true;
    }>;
}, Schema.Struct.Encoded<{
    Name: typeof Schema.String;
    Version: typeof Schema.String;
    Details: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
        nullable: true;
    }>;
}>, never, {
    readonly Version: string;
} & {
    readonly Name: string;
} & {
    readonly Details?: {
        readonly [x: string]: string;
    } | undefined;
}, {}, {}>;
export declare class ComponentVersion extends ComponentVersion_base {
}
export {};
//# sourceMappingURL=ComponentVersion.generated.d.ts.map