/// import { NewNotification } from "../../functions/notify"; export interface Notification extends NewNotification { type?: "info" | "danger" | "success"; } export interface Props { value?: string; tooltip?: string; notification?: string | Notification; onClick?: (...args: any[]) => any; className?: string; } declare const CopyButton: ({ value, tooltip, notification, onClick, className }: Props) => JSX.Element; export default CopyButton;