import { type ObjectLiteralExpression } from '@typescript/typescript6'; import type { Schema } from '@vaadin/hilla-generator-core/Schema.js'; interface Annotation { name: string; attributes?: Record; } export type SchemaWithMetadata = Schema & { 'x-annotations'?: Annotation[]; 'x-java-type'?: string; }; export declare function process(schema: Schema): ObjectLiteralExpression | null; export {};