import { IconButtonProps } from '@mui/material/IconButton'; export interface CopyButtonProps extends Omit { copyText: string; onSuccess?: () => void; onError?: (err: Error) => void; }