import * as React from 'react'; import { TextProps as CoreTextProps } from '../core/CoreText'; import { Skin, Size } from './constants'; export interface Props { /** font size of the text */ size?: Size; /** is the text type is secondary. Affects the font color */ secondary?: boolean; /** skin color of the text */ skin?: Skin; /** is the text has dark or light skin */ light?: boolean; /** is the text bold */ bold?: boolean; } export declare const Text: React.FunctionComponent;