import { default as React } from 'react'; import { HelpAlertProps, HelpCopy } from '../../../core'; interface ContactSupportProps { alert: HelpAlertProps; copy: HelpCopy; email?: string | null | undefined; institution?: string; isLoading: boolean; isOpen: boolean; onClose: () => void; onSubmit: (message: string) => void; setAlert: (message: string) => void; topic: string; } export declare const ContactSupport: React.FC; export {};