import React, { forwardRef } from 'react';
export function ActionsheetVirtualizedList(StyledActionsheetVirtualizedList) {
    return forwardRef(({ ...props }, ref) => {
        return <StyledActionsheetVirtualizedList ref={ref} {...props}/>;
    });
}
