import { FunctionComponent, VNode } from 'preact'; import { HTMLAttributes } from 'preact/compat'; export interface GalleryGridProps extends HTMLAttributes { children: VNode[] | VNode; gap?: 'small' | 'medium' | 'large' | null; style?: Record; } export declare const GalleryGrid: FunctionComponent; //# sourceMappingURL=GalleryGrid.d.ts.map