export declare type EntityResponse = { success: boolean; data: any | null; error: string | null; }; export declare type EntityAbstractServiceType = { getWelcomeMessage: () => string; findMany: (collectionName: string, options?: object) => Promise; findOne: (collectionName: string, id: string | number, options: object) => Promise; create: (collectionName: string, values: any) => Promise; update: (collectionName: string, id: string | number, values: object) => Promise; delete: (collectionName: string, id: string | number) => Promise; }; //# sourceMappingURL=service.d.ts.map