import type { FC, MouseEventHandler } from "react"; export interface CategoryProps { folder: string; key: string; } interface ImageCategoryProps { category: CategoryProps; images: string[]; highlightedImage: string | null; handleImageClick: MouseEventHandler; isTypeCompact: boolean; } export declare const ImageCategory: FC; export {};