/// import React from 'react'; import { Typography } from '../../foundation'; export type BaseTextAlignment = 'center' | 'leading' | 'trailing'; export type BaseTextElement = keyof Pick; export interface BaseTextProps extends React.Attributes { alignment?: BaseTextAlignment; /** @default 'span' */ as?: BaseTextElement; color?: string; /** @default Body_13_Regular * 'inherit'으로 부모 스타일을 상속받을 수 있습니다. * */ typography?: Typography | 'inherit'; } export type BaseTextComponentProps = BaseTextProps & JSX.IntrinsicElements[BaseTextElement]; export declare const BaseText: React.FC;