import React from 'react';
interface GallerySectionsViewProps {
    images: {
        url: string;
        label?: string;
        section?: string;
    }[];
    onImageClick?: (idx: number) => void;
}
export declare const GallerySectionsView: React.FC<GallerySectionsViewProps>;
export {};
