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