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