import { AttachmentViewModel } from '../view-models/attachment-view-model';
import { ErrorService } from '../error.service';
import { Router } from '@angular/router';
import { UrlManagerService } from '../url-manager.service';
import { ClickHandlerService } from '../click-handler.service';
export declare class AttachmentPropertyComponent {
    private readonly error;
    private readonly urlManager;
    private readonly clickHandlerService;
    private readonly router;
    constructor(error: ErrorService, urlManager: UrlManagerService, clickHandlerService: ClickHandlerService, router: Router);
    private attach;
    attachment: AttachmentViewModel;
    title: string;
    image: string;
    noImage: string;
    doAttachmentClick: (right?: boolean | undefined) => void;
    private setup();
}
