import 'lazysizes'; export declare type NexusImagePropsType = { className?: string; src?: string; isLazy?: boolean; [key: string]: any; }; declare const NexusImage: { ({ className, src, isLazy, ...props }: NexusImagePropsType): JSX.Element | null; displayName: string; __docgenInfo: { description: string; displayName: string; props: { className: { defaultValue: { value: string; }; description: string; name: string; required: boolean; type: { name: string; }; }; src: { defaultValue: { value: string; }; description: string; name: string; required: boolean; type: { name: string; }; }; isLazy: { defaultValue: { value: boolean; }; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default NexusImage;