/**
* get text from the clipboard
* @returns {string}
*/
export declarefunctiongetClipboardText(): string;
/**
* set text to clipboard
* @param text {string} text to set to clipboard
* @returns {void}
*/
export declarefunctionsetClipboardText(text: string): void;