import * as React from 'react'; import { CSSObject } from '@emotion/react'; import type { Property } from 'csstype'; import { Theme } from '../../Identity/Theme'; export interface TextProps extends React.PropsWithRef> { block?: boolean; bold?: boolean; center?: boolean; color?: string; fontSize?: string; light?: boolean; muted?: boolean; noWrap?: boolean; textTransform?: Property.TextTransform; truncate?: boolean; } export declare const filterTextProps: (props: TextProps) => Object; export declare const textStyle: (theme: Theme, props: TextProps) => CSSObject; export declare const Text: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export declare const Bold: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export declare const Small: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export declare const Muted: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export declare const Uppercase: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export declare const Large: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; //# sourceMappingURL=Text.d.ts.map