import { FunctionComponent, HTMLProps } from 'react'; import { OneOf } from '../../typeUtils'; import { GutterSize } from '../../styles/gutters'; export interface GalleryProps extends HTMLProps { gutter: OneOf; } declare const Gallery: FunctionComponent; export default Gallery;