export declare interface Clipboard {
    copy(item: any): Promise<boolean>;
    paste(): Promise<string>;
    Constants: {};
    Errors: {};
}
