import { DevelopmentListQueryInterface } from '../interfaces/development.list.query.interface'; import { DevelopmentCrudService } from '../services/development.crud.service'; export declare class DevelopmentCrudController { private readonly service; constructor(service: DevelopmentCrudService); list(entity: string, query: DevelopmentListQueryInterface): Promise; get(entity: string, id: string): Promise; create(entity: string, body: unknown): Promise; update(entity: string, id: string, body: unknown): Promise; remove(entity: string, id: string): Promise<{ success: boolean; id: number; }>; }