import React from 'react'; export interface GridProps { total?: number; interactive?: boolean; } export interface GalleryProps { total?: number; show?: boolean; } export declare const images: { url: string; alt: string; author: string; title: string; description: string; }[]; export declare const GridImage: React.FC; export declare const GalleryContainer: React.FC;