import React from 'react'; export interface ExternalUrlPopoverProps { onConfirm: (url: string) => void; onClose: () => void; isOpen: boolean; } export declare const ExternalUrlPopover: React.FC>;