import { CodeModel } from '@autorest/codemodel'; import { AutorestExtensionHost as Host, JsonPointerSegments as JsonPath } from '@autorest/extension-base'; import { Project } from './project'; import { DeepPartial } from '@azure-tools/codegen'; import { ModelState } from '../utils/model-state'; 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 { project: Project; constructor(service: Host, objectInitializer?: DeepPartial); init(project?: Project): Promise; path(...childPath: JsonPath): this; } //# sourceMappingURL=state.d.ts.map