export default function ImageGallery({ imagesUrl, squared, columns, mdColumns, xsColumns, space, isRounded, isCircled, animation, hasShadow, bgBackdropClose, figcaption }: {
    imagesUrl?: {
        url: string;
        alt: string;
        figcaption: string;
    }[] | undefined;
    squared?: boolean | undefined;
    columns?: number | undefined;
    mdColumns?: number | undefined;
    xsColumns?: number | undefined;
    space?: string | undefined;
    isRounded: any;
    isCircled: any;
    animation?: string | undefined;
    hasShadow: any;
    bgBackdropClose: any;
    figcaption: any;
}): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
//# sourceMappingURL=imageGallery.d.ts.map