import { SxProps, Theme } from '@mui/material/styles';
import { MotionProps } from 'framer-motion';
import { FunctionComponent } from 'react';

interface ClipboardCopyingOverlayProps {
    sx?: SxProps<Theme>;
    motionProps?: MotionProps;
}
declare const ClipboardCopyingOverlay: FunctionComponent<ClipboardCopyingOverlayProps>;

export { ClipboardCopyingOverlay as default };
export type { ClipboardCopyingOverlayProps };
