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