import { FastifyRequest as Request, FastifyReply as Response } from 'fastify'; interface LocationHeaderOptions { isPlugin?: boolean; } export declare function setLocationHeader(req: Request, res: Response, prefix: string, ...args: (string | number | LocationHeaderOptions)[]): void; export {};