import React from 'react'; import { SpaceProps, LayoutProps, ColorProps, TypographyProps, BorderProps, PositionProps } from 'styled-system'; import { Theme } from '@evlop/commons'; export interface TextGradientProps { angle?: string | number; fromColor?: string; fromStop?: string | number; toColor?: string; toStop?: string | number; } export interface TextProps extends SpaceProps, LayoutProps, ColorProps, TypographyProps, BorderProps, PositionProps { textVariant?: string; variant?: string; gradient?: TextGradientProps; lines?: number; textTransform?: string; fontFamily?: string; [key: string]: any; } export declare const Text: React.ComponentType; export default Text; //# sourceMappingURL=Text.d.ts.map