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