import { type CreateFilesConfig, type EnvironmentEntity, type GeneratedFile, type ModuleFileExtension } from "../../core/core.models.js";
import type { FormatOptions } from "../../format/formatter.js";
export type GenerateEnvironmentModelsConfig = {
    readonly environmentId: string;
    readonly addTimestamp: boolean;
    readonly managementApiKey: string;
    readonly entities?: readonly EnvironmentEntity[];
    readonly moduleFileExtension: ModuleFileExtension;
    readonly managementBaseUrl?: string;
    readonly formatOptions?: FormatOptions;
    readonly disableComments?: boolean;
} & CreateFilesConfig;
export declare function generateEnvironmentModelsAsync(config: GenerateEnvironmentModelsConfig): Promise<readonly GeneratedFile[]>;
