import type { Handler } from '@chubbyts/chubbyts-http-types/dist/handler';
import type { ResponseFactory } from '@chubbyts/chubbyts-http-types/dist/message-factory';
import type { FindModelById, RemoveModel } from '../repository.js';
export declare const createDeleteHandler: <C>(findModelById: FindModelById<C>, removeModel: RemoveModel<C>, responseFactory: ResponseFactory) => Handler;
