import * as React from 'react';
import { GalleryProps } from '@patternfly/react-core';
type DividedGalleryProps = Omit<GalleryProps, 'minWidths' | 'maxWidths'> & {
    minSize: string;
    itemCount: number;
    showClose?: boolean;
    closeAlt?: string;
    onClose?: () => void;
    closeTestId?: string;
};
import './DividedGallery.scss';
declare const DividedGallery: React.FC<DividedGalleryProps>;
export default DividedGallery;
//# sourceMappingURL=DividedGallery.d.ts.map