export interface ImageProps { src: string | undefined; alt: string; placeholder?: any; [props: string]: any; } export declare const Image: ({ src, alt, placeholder, ...props }: ImageProps) => import("@emotion/react/jsx-runtime").JSX.Element;