import type { ContactInfo } from '@prezly/slate-types'; import React from 'react'; interface Props { contact: ContactInfo | null; isEditing?: true; onClose: () => void; onSubmit: (contact: ContactInfo) => void; } export declare function InlineContactForm({ contact, isEditing, onClose, onSubmit }: Props): React.JSX.Element; export {};