/** * Collage Layout Generator * Random collage with varying sizes */ import type { ImageLayoutItem, LayoutConfig, ImageSourceType } from "./layoutTypes"; export declare const generateCollageLayout: (images: ImageSourceType[], config?: LayoutConfig) => ImageLayoutItem[];