import { default as React } from 'react'; import { ActionItem } from '../types'; type Props = { actions: ActionItem[]; contactMethodIds?: string[]; entryId: string; groupId: string; }; declare const ContactMethodList: React.FC; export default ContactMethodList;