import React from 'react'; export interface NativeSelectGroupProps { label?: string; disabled?: boolean; children?: React.ReactNode; } const Group = ({ label, disabled, children, ...restProps }: NativeSelectGroupProps) => ( {children} ); export default Group;