import { type TextProps as NativeProps } from 'react-native'; import type { ColorType, TextType } from '../../utils/TypesUtil'; export type TextProps = NativeProps & { color?: ColorType; variant?: TextType; center?: boolean; }; export declare function Text({ children, style, center, color, variant, ...rest }: TextProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map