import * as React from 'react'; interface ITicketFeedbackAttachFileProps { attachmentFiles?: any[]; announcementId?: string; attachmentTypeName?: string; isTemp?: boolean; isCreate?: boolean; isLoadingSubmitMail?: boolean; onDelete?: (ind: number) => void; } interface ITicketFeedbackAttachFileState { imgFileLists: any; indexImgFile: number; isOpenModal: boolean; } export declare class TicketFeedbackAttachFile extends React.Component { constructor(props: any); componentDidMount(): void; render(): JSX.Element; private renderImage; private renderImageModal; private renderHeaderModal; private renderBodyModal; private renderAttachmentsIcon; } export {};