import { Theme } from '@emotion/react'; import { DispatchAction } from '../../../../ui/src/index.ts'; import { default as React, ReactNode } from 'react'; import { ContactMethodType } from './contact-method'; export declare const contactItemList: (p: { theme: Theme; }) => import('@emotion/react').SerializedStyles; type Props = { contactMethods: ContactMethodType[]; header?: string; className?: string; action?: (action: string, value?: any) => void; dispatch?: DispatchAction; children?: ReactNode; itemRenderer?: (cm: any, props: any) => JSX.Element; guideId?: string; }; declare const ContactList: React.FC; export default ContactList;