import { FontWeightInterface, MarginInterface, TestId, TextElementEnum, } from './utils'; export type TextProps = { /** The `block` prop determines whether the element should be a block level element */ block?: boolean; /** The `italic` prop determines whether the element should be italicized */ italic?: boolean; /** The `underline` prop determines whether the element should be underlined */ underlined?: boolean; /** The `size` prop determines what Text Element should be rendered */ size?: TextElementEnum; } & FontWeightInterface & MarginInterface & TestId;