export default function MosaicGallery({ imagesUrl, squared, space, isRounded, isCircled, animation, quantity, hasShadow, bgBackdropClose, figcaption, classNames }: {
    imagesUrl?: {
        url: string;
        alt: string;
        figcaption: string;
    }[] | undefined;
    squared?: boolean | undefined;
    space?: string | undefined;
    isRounded: any;
    isCircled: any;
    animation?: string | undefined;
    quantity?: number | undefined;
    hasShadow: any;
    bgBackdropClose: any;
    figcaption: any;
    classNames?: {
        wrapper: string;
        image: string;
        imageWrapper: string;
        preNextBtn: string;
        closeBtn: string;
        moreBtn: string;
    } | undefined;
}): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
//# sourceMappingURL=mosaicGallery.d.ts.map