import { type TextProps as PrimerTextProps } from '@primer/react'; import { type SxProp } from '../sx'; import type React from 'react'; import type { ForwardRefComponent } from '../polymorphic'; type BaseTextProps = { size?: 'large' | 'medium' | 'small'; weight?: 'light' | 'normal' | 'medium' | 'semibold'; className?: string; children?: React.ReactNode; as?: React.ElementType; } & SxProp & React.HTMLAttributes; type TextProps = PrimerTextProps & SxProp; declare const Text: ForwardRefComponent<"span", BaseTextProps>; export { Text, type TextProps }; //# sourceMappingURL=Text.d.ts.map