import React from 'react'; /** * Build the SVG. Save any image data to Cloudinary. Patch or post any note * data to embla. Updates the note preview and saves it to global state. This * hook should be invoked at the top level of the component hierarchy so it can * maintain state across renders. */ declare const useSaveNote: ({ isPreview }: { isPreview?: boolean | undefined; }) => { widthRef: React.RefObject; createOrUpdateNote: () => Promise; }; export default useSaveNote;