import React from 'react'; export interface LazyloadProps { children?: React.ReactNode; placeholder?: React.ReactNode; container?: HTMLElement | null; offset?: number; isInView?: boolean; } declare const Lazyload: (props: LazyloadProps) => import("react/jsx-runtime").JSX.Element; export default Lazyload; //# sourceMappingURL=lazyload.d.ts.map