import * as React from 'react'; import { ITextBaseProps, ITextCommonProps } from '../_private/TextBase/TextBase'; export declare enum TitlePropSize { caption = "caption", s = "s", m = "m", l = "l", xl = "xl" } interface IProps extends ITextCommonProps { privateOptions?: ITextBaseProps; size?: TitlePropSize | keyof typeof TitlePropSize; } export declare const Title: { (props: IProps): React.JSX.Element; defaultProps: Partial; }; export {}; //# sourceMappingURL=Title.d.ts.map