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