import { ComponentType } from 'react'; import { TooltipProps } from '@material-ui/core'; export type CopyToClipboardProps = { /** * ⚠️ Must be a string */ children: string; dataTestId?: string; IconComponent?: ComponentType; tooltipProps?: { title?: string; placement?: TooltipProps['placement']; delay?: number; }; classes?: { root?: string; icon?: string; iconWrapper?: string; tooltip?: string; tooltipPopper?: string; }; }; declare const CopyToClipboard: ({ children, classes, dataTestId, IconComponent, tooltipProps, }: CopyToClipboardProps) => JSX.Element; export default CopyToClipboard; //# sourceMappingURL=CopyToClipboard.d.ts.map