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