import Base from './base'; declare class Copy extends Base { copyType: string; copyInfo: string; getClipboardData(): { html: string; text: string; }; copyHandler(event: ClipboardEvent): void; } export default Copy;