import { ReactElement } from 'react';
interface FullscreenViewProps {
    imageSrc: string;
    imageAlt: string;
    onClose: () => void;
}
export default function FullscreenView({ imageSrc, imageAlt, onClose, }: FullscreenViewProps): ReactElement;
export {};
