export declare class ShortenerEntity { url: string; static fromShortenerDto(dto: ShortenerDto): ShortenerEntity; } export declare class ShortenerDto { shortAddress: string; longAddress: string; }