import * as React from 'react'; export interface GalleryProps extends React.HTMLProps { /** content rendered inside the Gallery layout */ children?: React.ReactNode; /** additional classes added to the Gallery layout */ className?: string; /** Adds space between children. */ hasGutter?: boolean; /** Minimum widths at various breakpoints. */ minWidths?: { default?: string; sm?: string; md?: string; lg?: string; xl?: string; '2xl'?: string; }; /** Maximum widths at various breakpoints. */ maxWidths?: { default?: string; sm?: string; md?: string; lg?: string; xl?: string; '2xl'?: string; }; /** Sets the base component to render. defaults to div */ component?: React.ElementType | React.ComponentType; } export declare const Gallery: React.FunctionComponent; //# sourceMappingURL=Gallery.d.ts.map