import React from 'react'; import type { Polymorphic } from '../core/polymorphism'; import { type TextBaseProps } from './Text'; export declare const textLegalDefaultElement = 'span'; export type TextLegalDefaultElement = typeof textLegalDefaultElement; export type TextLegalBaseProps = TextBaseProps; export type TextLegalProps = Polymorphic.Props< AsComponent, TextLegalBaseProps >; type TextLegalComponent = (( props: TextLegalProps, ) => Polymorphic.ReactReturn) & Polymorphic.ReactNamed; export declare const TextLegal: TextLegalComponent; export {}; //# sourceMappingURL=TextLegal.d.ts.map