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