import type { CopyPaste, CopyPasteConfig } from './types'; /** * Creates a clipboard-backed copy/paste helper for Qlik objects. * * In case of any changes, make sure copy and paste is tested manually in * supported browsers. This area is known to be fragile due to browser security * restrictions and differing implementations (notably Safari). */ export default function createCopyPaste(config: CopyPasteConfig): CopyPaste;