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