import * as react from 'react';
import { LabelProps } from './types.js';

declare const Label: react.ForwardRefExoticComponent<Omit<LabelProps, "ref"> & react.RefAttributes<HTMLDivElement>>;

export { Label as default };
