import { FastifyReply } from 'fastify';
export declare const sendSuccess: <T>(reply: FastifyReply, data: T, message?: string, statusCode?: number) => void;
export declare const sendError: (reply: FastifyReply, error: string, statusCode?: number, details?: Record<string, unknown>) => void;
export declare const sendValidationError: (reply: FastifyReply, errors: string[]) => void;
export declare const sendNotFound: (reply: FastifyReply, resource?: string) => void;
export declare const sendInternalError: (reply: FastifyReply, message?: string) => void;
//# sourceMappingURL=response.d.ts.map