import * as React from "react"; export interface ShareLinkDialogProps { visible: boolean; shareUrl?: string; title?: string; ariaLabel?: string; linkAriaLabel?: string; className?: string; children?: React.ReactNode; onClose: () => void; } export declare const ShareLinkDialog: React.FC;