import type { IGeneratedContent } from "./ContentGenerator";
import type Project from "../app/Project";
export declare class ContentWriter {
    /**
     * Write all generated content files to a project's behavior pack and resource pack folders.
     *
     * @param project The project to write content into.
     * @param content The generated content from ContentGenerator.generate().
     */
    static writeGeneratedContent(project: Project, content: IGeneratedContent): Promise<void>;
}
