import { Theme } from '@principal-ade/industry-theme'; import React from 'react'; export interface IndustryPlaceholderModalProps { isOpen: boolean; onClose: () => void; placeholders: string[]; promptContent: string; onCopy: (filledPrompt: string) => void; theme: Theme; } export declare function IndustryPlaceholderModal({ isOpen, onClose, placeholders, promptContent, onCopy, theme, }: IndustryPlaceholderModalProps): React.JSX.Element | null; //# sourceMappingURL=IndustryPlaceholderModal.d.ts.map