import React from "react"; interface HideOffscreenProps { children: React.ReactNode; hideDistance?: number; } /** * A component to use for additional optimizations on top of using LazyList. * When HideOffscreen is scrolled far offscreen, it removes its children while * maintaining their height, and then adds those children back when it comes * onscreen. */ export default function HideOffscreen(props: HideOffscreenProps): JSX.Element; export {};