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';
import type { InputModelSchema } from '../model.js';
export declare const createDeleteHandler: <IMS extends InputModelSchema>(findModelById: FindModelById<IMS>, removeModel: RemoveModel<IMS>, responseFactory: ResponseFactory) => Handler;
