/** * Schema for axm package metadata shipped by library authors. * * @experimental This API is unstable and may change without notice. */ import * as Schema from "effect/Schema"; export declare const PackageExtensionDeclarationSchema: Schema.Struct<{ readonly ref: Schema.String; readonly versionRange: Schema.optional>>; }>; export type PackageExtensionDeclaration = Schema.Schema.Type; /** * Schema for the axm package metadata file that library authors ship * to surface recommended axm extensions for their package. * * @experimental This API is unstable and may change without notice. */ export declare const AxmPackageMetaSchema: Schema.Struct<{ readonly $schema: Schema.optional; readonly extensions: Schema.$Array>>; }>>; }>; /** * Inferred type for AxmPackageMeta schema. * * @experimental This API is unstable and may change without notice. */ export type AxmPackageMeta = Schema.Schema.Type; //# sourceMappingURL=axm-package-meta.d.ts.map