import { TextBaseProps } from '../base/textBase'; /** * Props for Span. * Extends TextBaseProps except component. * * @category Typography */ export type SpanProps = Omit; /** * Span semantic inline text wrapper. * Renders native span element. * * @function * @param props - Typography props. * * @category Typography */ export declare const Span: import('react').ForwardRefExoticComponent>;