import { ComponentChildren, h } from "preact"; type Props = { text: string; children: ComponentChildren; }; declare const Clipboard: ({ children, text }: Props) => h.JSX.Element; export default Clipboard;