import { SxProps, Theme } from "@mui/material"; interface CopyTextProps { text: string; textCopy?: string; copyOnclick?: boolean; sx?: SxProps; } declare function CopyText({ text, copyOnclick, textCopy, sx }: CopyTextProps): JSX.Element; export default CopyText;