import { BoxProps, ChakraComponent } from '@chakra-ui/react'; import { default as React } from 'react'; export declare const textSizesArray: readonly ["default", "body1", "body2", "caption", "tag", "mini", "overline1", "overline2", "subtitle1", "subtitle2"]; export type TextSizes = typeof textSizesArray[number]; export interface TextProps extends BoxProps { /** Optional prop used to show bolded text */ isBold?: boolean; /** Optional prop used to show italicized text */ isItalic?: boolean; /** Optional prop used to show capitalized text */ isCapitalized?: boolean; /** Optional prop used to show upper case text */ isUppercase?: boolean; /** Optional prop used to show lower case text */ isLowercase?: boolean; /** Optional prop to control the text styling */ size?: TextSizes; } export declare const Text: ChakraComponent & React.RefAttributes>, React.PropsWithChildren>; export default Text;