/** * Initialize clipboard. * @param {string|HTMLElement} context A button element with a "data-clipboard-target" attribute that initiates a clipboard copy, or a context element or selector with such an element. * @param {number} delay Time (in milliseconds) to switch from the copy complete icon to the pre-copy icon. Default is 3000. * @example * HTML: * ```html * *
* * * * * * *
* * ``` * * JS: * ```js * import {initializers} from 'metronic-extension'; * * // Initialize clipboard. * initializers.initClipboard(document.getElementById('button')); * ``` */ declare const _default: (context: string | HTMLElement, delay?: number) => void; export default _default;