/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { ClipboardActionType } from './common.js'; /** * @hidden */ export declare class ClipboardService { private clipboardEvent; constructor(ClipboardEventHandler: (clipboardType: ClipboardActionType, event: ClipboardEvent) => void); private copyHandler; private cutHandler; private pasteHandler; addEventListeners: (document: Document | undefined) => void; removeEventListeners: (document: Document | undefined) => void; }