/// <reference types="react" />
export interface Props {
    visible: boolean;
    onCancel?: () => void;
    onOk: ({ url, title }: {
        url: string;
        title: string;
    }) => void;
    apiURL?: string;
}
declare const AttachmentLinkModal: ({ visible, onCancel, onOk }: Props) => JSX.Element;
export default AttachmentLinkModal;
