import React from 'react';
export type Props = {
    images: string[];
    initialViewIndex: number;
    onClose?: () => void;
    alt?: string;
};
export declare const PostSingleImageViewPopup: ({ initialViewIndex, images, onClose, alt, }: Props) => React.JSX.Element;
