react-application-core
Version:
A react-based application core for the business applications.
20 lines (19 loc) • 514 B
TypeScript
/// <reference types="react" />
import { ITitleProps } from '../../definition';
import { GenericComponent } from '../base/generic.component';
/**
* @component-impl
* @stable [01.06.2020]
*/
export declare class Title extends GenericComponent<ITitleProps> {
/**
* @stable [01.06.2020]
* @returns {JSX.Element}
*/
render(): JSX.Element;
/**
* @stable [02.06.2020]
* @returns {ITitleProps}
*/
protected get componentsSettingsProps(): ITitleProps;
}