interface MasonryProps extends React.HTMLAttributes {
style?: React.CSSProperties;
children: React.ReactNode[];
gap: {
col: string;
row: string;
};
col: {
mobile: number;
smallDesktop: number;
desktop: number;
tablet: number;
};
delay?: number;
onGridMasonryLoadEnd?: (isGridMasonryLoadEnd: boolean) => void;
}
export declare const Masonry: React.FC;
export {};