import React from 'react'; export interface TextProps extends React.HTMLAttributes { /** * If true, the text will be muted */ muted?: boolean; /** * If true, the text will be bold */ bold?: boolean; /** * Size of the text */ size?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge'; } export declare const Text: React.FC; //# sourceMappingURL=Text.d.ts.map