export declare const addEntityFiles: {
    dbChangelog: ({
        condition: (generator: any) => any;
        path: string;
        templates: {
            file: (context: any) => string;
            renameTo: (context: any) => string;
            transform: boolean;
        }[];
    } | {
        condition: (generator: any) => any;
        path: string;
        templates: {
            file: string;
            renameTo: (generator: any) => string;
        }[];
    })[];
};
export declare const updateEntityFiles: {
    dbChangelog: {
        condition: (generator: any) => boolean;
        path: string;
        templates: {
            file: string;
            renameTo: (generator: any) => string;
        }[];
    }[];
};
export declare const updateConstraintsFiles: {
    dbChangelog: {
        condition: (generator: any) => boolean;
        path: string;
        templates: {
            file: string;
            renameTo: (generator: any) => string;
        }[];
    }[];
};
export declare const updateMigrateFiles: {
    dbChangelog: {
        condition: (generator: any) => boolean;
        path: string;
        templates: {
            file: string;
            renameTo: (generator: any) => string;
        }[];
    }[];
};
export declare const fakeFiles: {
    fakeData: ({
        condition: (generator: any) => boolean;
        path: string;
        templates: {
            file: string;
            renameTo: (generator: any) => string;
        }[];
    } | {
        condition: (generator: any) => any;
        path: string;
        templates: {
            file: string;
            noEjs: boolean;
        }[];
    } | {
        condition: (generator: any) => any;
        path: string;
        templates: string[];
    })[];
};
export declare const importDataFiles: {
    csvFiles: ({
        condition: (generator: any) => any;
        path: string;
        templates: {
            file: (context: any) => string;
            override: () => boolean;
        }[];
    } | {
        condition: (generator: any) => boolean;
        path: string;
        templates: {
            file: (context: any) => string;
        }[];
    })[];
};
