import { codemodel, ModelState } from '@microsoft.azure/autorest.codemodel-v3'; import { Host, JsonPath } from '@microsoft.azure/autorest-extension-base'; import { Project } from './project'; export interface GeneratorSettings { azure: boolean; cmdletFolder: string; customFolder: string; runtimefolder: string; moduleName: string; csproj: string; psd1: string; psm1: string; apifolder: string; } export declare class State extends ModelState { private prj?; project: Project; constructor(service: Host, model: codemodel.Model, documentName: string, currentPath?: JsonPath, prj?: Project | undefined); path(...childPath: JsonPath): State; } //# sourceMappingURL=state.d.ts.map