@memori.ai/memori-react
Version:
[](https://www.npmjs.com/package/@memori.ai/memori-react)   • 342 B
TypeScript
/// <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;