import type { Schema } from '@hilla/generator-typescript-core/Schema.js'; import { type ObjectLiteralExpression } from 'typescript'; interface Annotation { name: string; attributes?: Record; } export type SchemaWithMetadata = Schema & { 'x-annotations'?: Annotation[]; 'x-java-type'?: string; }; export declare class MetadataProcessor { #private; process(schema: Schema): ObjectLiteralExpression | null; } export {}; //# sourceMappingURL=MetadataProcessor.d.ts.map