import React from 'react'; interface Props { onClose: () => void; onEdit: () => void; onRemove: () => void; } export declare function InlineContactMenu({ onClose, onEdit, onRemove }: Props): React.JSX.Element; export {};