import React from 'react'; import { FieldPropSize } from '../../FieldComponents'; import { PropsWithHTMLAttributesAndRef } from '../../../utils/types/PropsWithHTMLAttributes'; type SelectGroupLabelProps = PropsWithHTMLAttributesAndRef<{ label: string; size: FieldPropSize; indent: 'normal' | 'increased'; }, HTMLDivElement>; export declare const SelectGroupLabel: React.FC; export {};