import type Generator from './generator.js';
export declare const neo4jFiles: {
    serverResource: ({
        path: string;
        renameTo: (data: any, filePath: string) => string;
        templates: string[];
        condition?: undefined;
    } | {
        condition: (generator: any) => any;
        path: string;
        renameTo: (data: any, filePath: string) => string;
        templates: string[];
    } | {
        condition: (generator: any) => any;
        path: string;
        templates: string[];
        renameTo?: undefined;
    })[];
    serverTestFw: {
        path: string;
        renameTo: (data: any, filePath: string) => string;
        templates: string[];
    }[];
};
export default function writeFilesTask(this: Generator, { application }: {
    application: any;
}): Promise<void>;
