export declare class WidgetUrlCipherEntity { cipherUrl: string; shortenerUrl: string; static fromWidgetUrlCipherDto(dto: WidgetUrlCipherDto): WidgetUrlCipherEntity; } export declare class WidgetUrlCipherDto { cipherUrl: string; shortenerUrl: string; } export declare class WidgetUrlCipherInputEntity { url: string; shortener: boolean; numberOfAllowedAppointments?: number; unencryptedParameters?: string; constructor(url: string); static toWidgetUrlCipherInputDto(entity: WidgetUrlCipherInputEntity): WidgetUrlCipherInputDto; } export declare class WidgetUrlCipherInputDto { url: string; shortener?: boolean; numberOfAllowedAppointments?: number; unencryptedParameters?: string; }