import * as react_jsx_runtime from 'react/jsx-runtime'; import React from 'react'; interface ImageProps extends Omit, "src" | "alt" | "width" | "height"> { src: string; alt: string; width?: number; height?: number; priority?: boolean; fill?: boolean; sizes?: string; placeholder?: 'blur' | 'empty'; blurDataURL?: string; quality?: number; format?: 'webp' | 'avif' | 'auto'; className?: string; deviceSizes?: number[]; imageSizes?: number[]; } /** * Image component with automatic optimization, lazy loading, and responsive images. * * Features: * - Automatic image optimization via /_loly/image endpoint * - Lazy loading by default (unless priority is true) * - Responsive images with srcset * - Placeholder support (blur) * - Fill mode for container-filling images * * @param props - Image component props * @returns Image element */ declare function Image({ src, alt, width, height, priority, fill, sizes, placeholder, blurDataURL, quality, format, className, deviceSizes, imageSizes, style, ...rest }: ImageProps): react_jsx_runtime.JSX.Element; declare function Link({ href, prefetch, children, ...rest }: React.PropsWithChildren<{ href: string; prefetch?: boolean; }> & React.AnchorHTMLAttributes): react_jsx_runtime.JSX.Element; export { Image, Link };