/**
 * A wrapper component for children of
 * VirtualScroll. Computes current height and
 * update virtual scroll.
 */
declare const VirtualScrollChild: ({ children, onHeightChange }: {
    children: any;
    onHeightChange: any;
}) => JSX.Element;
export default VirtualScrollChild;
