import React, { ReactNode } from 'react';
import { DroppableStateSnapshot } from 'react-beautiful-dnd';
export interface VirtualWrapperProps {
    children: (snapshot?: DroppableStateSnapshot, dragRowHeight?: number) => ReactNode;
}
declare const _default: React.FunctionComponent<VirtualWrapperProps>;
export default _default;
