export declare function copyToClipboard(htmlString: string, plainText?: string, onSuccess?: () => void, onError?: () => void): void; export declare function getSelectionContentForCopy(): Promise<{ plainText: string; html: string; }>;