export interface EnvironmentAutoCreateInput { name: string; description: string; style?: string; } export interface EnvironmentAutoCreateResult { imageUrl: string; plateRef: string; created: boolean; persisted: boolean; } export declare function buildPlatePrompt(input: EnvironmentAutoCreateInput): string; export declare function autoCreateEnvironments(inputs: EnvironmentAutoCreateInput[], options?: { projectSlug?: string; root?: string; apiKey?: string; apiUrl?: string; dryRun?: boolean; }): Promise>; //# sourceMappingURL=environment-auto-create.d.ts.map