/// import { BaseComponent, BaseComponentProps } from '../types'; import { ComposedTextProps } from '../private/utils/composers/types'; type Props = { /** * The size of the text. */ readonly aspectSize?: 's' | 'xs' | 'm' | 'l' | 'xl'; } & ComposedTextProps; type TextProps = BaseComponentProps; type TextComponent = BaseComponent<((props: TextProps) => React.ReactElement, any> | null)>; export { TextComponent, TextProps };