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