import { type ComponentProps, type FC } from "react"; import type { ThemingProps } from "../../types"; export interface ClipboardWithIconTheme { base: string; icon: { defaultIcon: string; successIcon: string; }; } export interface ClipboardWithIconProps extends ComponentProps<"button">, ThemingProps { valueToCopy: string; icon?: FC>; } export declare const ClipboardWithIcon: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;