import { ComponentType, ReactNode } from 'react'; import { TypographyProps, ColorProps, TextStyleProps, SpaceProps, FlexboxProps, LineHeightProps, LayoutProps } from 'styled-system'; export declare type Props = TypographyProps & ColorProps & TextStyleProps & SpaceProps & FlexboxProps & LineHeightProps & LayoutProps; export declare const mixin: any; declare type TextProps = Props & { bold?: boolean; as?: string; center?: boolean; name?: string; children?: ReactNode; }; export declare const textStylePropNames: string[]; declare const Text: ComponentType; export default Text;