import { DetailedHTMLProps, HTMLAttributes } from 'react';
type Props = DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement> & {
src: string;
};
declare function MagicImg({ src, ...reset }: Props): JSX.Element;
export { MagicImg as default };