Set up a keybinding to use copyRelativePathImport, or access from the context menu in your editor. Multiple selections will be copied as multiple imports.
// Single selections will be copied like this
import {helloWorld} from 'some/nested/directory/multiple';
// Multiple selections will be copied like this
import {helloWorld, testing, multipleThings} from 'some/nested/directory/multiple';
If you execute the same command with the copied value already in your clipboard, it will copy the relative path only.
If nothing is selected, it will copy the relative path of the active file.