import { LazyLoadWrapperProps } from './types'; /** * Conditionally renders its children. Checks the condition only once. * * @param props - The props object. * @returns The children if the condition is true once, otherwise null. */ export declare function LazyLoadWrapper(props: LazyLoadWrapperProps): import('react').ReactNode;