/**
 * CRUD handler factory for creating complete REST API handlers
 */
import type { RequestHandler } from 'msw';
import type { CrudHandlerOptions } from './types';
/**
 * Create CRUD handlers for a resource
 */
export declare function createCrudHandlers<T = any>(options: CrudHandlerOptions<T>): RequestHandler[];
//# sourceMappingURL=crud.d.ts.map