import ClipboardData from './clipboardData'; /** * @private */ export default class PasteEvent { /** * The simulated clipboard data object attached to this paste event. */ clipboardData: ClipboardData; /** * Initializes the paste event with an empty `ClipboardData` instance. */ constructor(); /** * No-op implementation of `preventDefault` to satisfy the event interface contract. */ preventDefault(): void; /** * Returns an empty array as a stub for the composed path of this synthetic event. */ composedPath(): unknown[]; }