/** * Interface CopyToClipboard params */ interface ICopyToClipboard { /** HTML reference identifier ```
``` */ target?: string; /** String value */ value?: string; /** (Optional) message to display in snackbar on success */ message?: string; } export declare const copyToClipboard: ({ target, value }: ICopyToClipboard) => Promise