import type { HTMLAttributes } from 'react'; import type { SxProps, Theme } from '@mui/material/styles'; export interface CopyButtonProps extends HTMLAttributes { /** The text to copy to the clipboard when clicked */ text: string; /** Duration in ms to show the success state before reverting */ feedbackMs?: number; /** MUI sx style overrides */ sx?: SxProps; }