import { Dispatch, SetStateAction } from 'react'; import { AllowedDocumentType, Attachment } from '@zeniai/client-epic-state'; type Dispatcher = Dispatch>; interface Props { file: Attachment; setShowFullScreenView: Dispatcher; title: string; documentType?: AllowedDocumentType; imageAltText?: string; onCrossClick: () => void; } export declare function FullScreenView({ title, file, imageAltText, documentType, setShowFullScreenView, onCrossClick, }: Props): import("react/jsx-runtime").JSX.Element; export declare function downloadFile(transactionAttachmentEndPoint: string, billFileName: string): Promise; export {};