import { Theme } from '@principal-ade/industry-theme'; import React from 'react'; export interface IndustryHtmlModalProps { isOpen: boolean; onClose: () => void; htmlContent: string; theme: Theme; } export declare const useIndustryHtmlModal: () => { htmlModalOpen: boolean; htmlModalContent: string; openHtmlModal: (content: string) => void; closeHtmlModal: () => void; }; export declare function IndustryHtmlModal({ isOpen, onClose, htmlContent, theme }: IndustryHtmlModalProps): React.JSX.Element | null; //# sourceMappingURL=IndustryHtmlModal.d.ts.map