/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { ILogger } from '../services/index.js'; export interface IGenerateModelServiceOptions { schemaFolderPath: string; schemaFilePath?: string; codeGenPath: string; logger: ILogger; useV2Codegen?: boolean; } export declare function generateModelService(options: IGenerateModelServiceOptions): Promise; /** * Clears and regenerates the model and service files. */ export declare function clearAndRegenerateModelService(options: IGenerateModelServiceOptions): Promise; //# sourceMappingURL=modelServiceGenerator.d.ts.map