import { Photo, LayoutModel } from '../types.js';
import 'react';

declare function computeRowsLayout<TPhoto extends Photo>(photos: readonly TPhoto[], spacing: number, padding: number, containerWidth: number, targetRowHeight: number, minPhotos?: number, maxPhotos?: number): LayoutModel<TPhoto> | undefined;

export { computeRowsLayout as default };
