declare function write(text: string): Promise; declare function read(): Promise; export declare const clipboard: { write: typeof write; read: typeof read; }; export {};