/** * {@link ClipboardClass} class gives access to a systems clipboard */ import { ProviderRegistry } from "@nut-tree-fork/provider-interfaces"; export declare class ClipboardClass { private providerRegistry; /** * {@link ClipboardClass} class constructor * @param providerRegistry */ constructor(providerRegistry: ProviderRegistry); /** * {@link setContent} copies a given text to the system clipboard * @param text The text to copy */ setContent(text: string): Promise; /** * {@link getContent} returns the current content of the system clipboard (limited to text) */ getContent(): Promise; }