export declare class ShortLink {
    id: number;
    code: string;
    original_url: string;
    click_count: number;
    created_at: Date;
}
