import { type SVGProps } from 'react'; export type AnimatedClipboardIconState = 'stale' | 'success' | 'error'; export type AnimatedClipboardIconProps = Omit, 'children'> & { title?: string; state?: AnimatedClipboardIconState; animated?: boolean; active?: boolean; boardClassName?: string; paperClassName?: string; checkClassName?: string; }; export declare const AnimatedClipboardIcon: ({ className, title, state, animated, active, boardClassName, paperClassName, checkClassName, role, "aria-hidden": ariaHidden, "aria-labelledby": ariaLabelledBy, ...props }: AnimatedClipboardIconProps) => import("react/jsx-runtime").JSX.Element;