import { FastiFoxModule } from './helpers/fastifox-module.helper'; import { IFastiFoxModuleContructor } from './protocols/crud-generator-helper.struct'; import { CrudGenerator } from './services/crud-generator.service'; declare class FastiFox { initialize({ context, directory }: { directory: string; context: IFastiFoxModuleContructor; }): Promise; } export { FastiFox, CrudGenerator, FastiFoxModule, }; export * from './protocols/crud-generator-helper.struct'; export * from './helpers'; export * from './plugins/jwt-auth'; export * from './middlewares'; export * from './plugins/multer';