import { Theme } from '@emotion/react'; import { Symbol } from '../../../../core/src/index.ts'; import { DispatchAction, HtmlParseInstruction } from '../../../../ui/src/index.ts'; import { default as React } from 'react'; export type ContactMethodType = { id: string; title: string; symbol?: Symbol; clientName: string; expanded: boolean; inline: boolean; body: { [key: string]: any; }; description?: string; confirmation?: string; disabled?: boolean; guideId?: string; }; export type Props = Merge void; renderDefault?: (extraProps?: Partial) => any; htmlParseInstruction?: HtmlParseInstruction; href?: string; target?: string; disabled?: boolean; action?: (action: string, value: any) => void; dispatch?: DispatchAction; symbol?: Symbol; description?: string; confirmation?: string; guideId?: string; autoFocus?: boolean; }>; declare const ContactMethod: React.FC; export default ContactMethod; export declare const contactLink: (p: { theme: Theme; description?: string; }) => import('@emotion/react').SerializedStyles;