export default class JoplinClipboard { private electronClipboard_; private electronNativeImage_; constructor(electronClipboard: any, electronNativeImage: any); readText(): Promise; writeText(text: string): Promise; readHtml(): Promise; writeHtml(html: string): Promise; /** * Returns the image in [data URL](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs) format. */ readImage(): Promise; /** * Takes an image in [data URL](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs) format. */ writeImage(dataUrl: string): Promise; /** * Returns the list available formats (mime types). * * For example [ 'text/plain', 'text/html' ] */ availableFormats(): Promise; }