/** * Text.tsx * * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT license. * * Android-specific implementation of Text component. */ /// import { Types } from '../common/Interfaces'; import { Text as CommonText } from '../native-common/Text'; export declare class Text extends CommonText { protected _getStyles(): Types.StyleRuleSetRecursiveArray; render(): JSX.Element; } export default Text;