import { type LabelProps as PrimerLabelProps } from '@primer/react'; import { type SxProp } from '../sx'; import type { ForwardRefComponent } from '../polymorphic'; type LabelProps = PrimerLabelProps & SxProp & { as?: React.ElementType; }; declare const Label: ForwardRefComponent<"span", LabelProps>; export { Label, type LabelProps }; //# sourceMappingURL=Label.d.ts.map