import React from 'react'; import { type IconProp } from '@fortawesome/fontawesome-svg-core'; import './InfoModal.scss'; type InfoModalProps = { /** Class name to give the info modal */ className?: string; /** Icon to display in the modal */ icon?: IconProp; /** Title to display in the modal */ title: React.ReactNode; /** Subtitle/detail to display in the modal */ subtitle?: React.ReactNode; /** Whether the modal is open/visible or not. */ isOpen?: boolean; }; /** * A modal that displays a message with an icon. Can be used for informational messages, warnings, or errors. * Does not have any buttons and cannot be dismissed. */ declare function InfoModal({ className, icon, isOpen, subtitle, title, }: InfoModalProps): JSX.Element; export default InfoModal; //# sourceMappingURL=InfoModal.d.ts.map