import { type BaseGeometryProps } from '../../jsx'; import type { ThemeColors } from '../../themes'; export interface TitleProps extends BaseGeometryProps { alignHorizontal?: 'left' | 'center' | 'right'; title?: string; desc?: string; descLineNumber?: number; themeColors: ThemeColors; } export declare const Title: (props: TitleProps) => any;