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