import React, { PropsWithChildren } from 'react';
import { TextProps as RNTextProps } from 'react-native';
import { TextProps } from '@shopify/restyle';
import { Theme } from '../theme';
type Props = TextProps<Theme> & Omit<RNTextProps, 'onLongPress' | 'onPress' | 'onPressIn' | 'onPressOut'>;
declare const Text: React.MemoExoticComponent<({ children, style, ...props }: PropsWithChildren<Props>) => JSX.Element>;
export default Text;
//# sourceMappingURL=index.d.ts.map