type ImageData = {
    src: string;
    alt?: string;
    caption?: string;
};
type Props = {
    images: ImageData[];
    initialIndex?: number;
    isOpen: boolean;
    onClose: () => void;
    className?: string;
};
export declare const VuiImagePreview: ({ images, initialIndex, isOpen, onClose, className }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
