import React from 'react'; import { ICustomizable, IGlobalAttributes, IParent } from '../../../core'; export interface TitleProps extends IParent, ICustomizable, IGlobalAttributes { clampLines?: number; } export declare function Title(props: TitleProps): JSX.Element; export interface LinkTitleProps extends TitleProps { href?: string; rel?: string; target?: string; onClick?: (e: React.MouseEvent) => void; } export declare function LinkTitle(props: LinkTitleProps): JSX.Element;