export declare interface ClipboardUtils {
    copy(item: string): Promise<boolean>;
    paste(): Promise<string>;
}
