import type { Response } from 'express';
import { ShortLinkService } from './short-link.service';
export declare class ShortLinkController {
    private readonly shortLinkService;
    constructor(shortLinkService: ShortLinkService);
    redirect(code: string, res: Response): Promise<void | Response<any, Record<string, any>>>;
}
