import * as React from 'react';
import { GalleryItemProps } from '@patternfly/react-core';
import { SectionType } from '../../components/design/utils';
type InfoGalleryItemProps = {
    title: string;
    imgSrc: string;
    sectionType: SectionType;
    description: React.ReactNode;
    isOpen: boolean;
    onClick?: () => void;
    testId?: string;
} & GalleryItemProps;
declare const InfoGalleryItem: React.FC<InfoGalleryItemProps>;
export default InfoGalleryItem;
//# sourceMappingURL=InfoGalleryItem.d.ts.map