import * as React from 'react'; import { IconButton } from '@mui/material'; type Props = { text: string; large?: boolean; noMarginY?: boolean; } & React.ComponentProps; export declare function CopyToClipBoardIconButton({ text, large, noMarginY, className, ...rest }: Props): import("react/jsx-runtime").JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;