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