import { type ApiSurface } from '@xemahq/xema-decorators'; import { type ResolvedServiceContext } from './service-config'; export interface GeneratedClientXemaBlock { readonly kind: 'api-client'; readonly surface: ApiSurface; readonly service: string; readonly biome: string; readonly target: 'server'; readonly generator: string; readonly source: string; } export declare function resolveGeneratedClientLicense(repoRoot: string): string; export declare function ensureClientPackage(ctx: ResolvedServiceContext, surface: ApiSurface, version: string, repositoryUrl: string, license: string): { clientDir: string; clientSrc: string; }; //# sourceMappingURL=client-package.d.ts.map