export declare class HTMLDwebClipboardElement extends HTMLElement {
static readonly tagName = "dweb-clipboard";
readonly plugin: import("./clipboard.plugin.js").ClipboardPlugin;
get read(): () => Promise;
get write(): (options: import("./clipboard.type.js").ClipboardWriteOptions) => Promise;
}
declare global {
interface HTMLElementTagNameMap {
[HTMLDwebClipboardElement.tagName]: HTMLDwebClipboardElement;
}
}
//# sourceMappingURL=clipboard.wc.d.ts.map