import React from 'react'; import { ILine } from '../Line/Line'; import { IValueBreakpoints } from '../types'; export interface IMasonry extends Omit { gap?: number | Partial>; columns?: number | Partial>; noMasonry?: boolean; NoMasonryProps?: any; } declare const Masonry: React.FC; export default Masonry;