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