import { SystemProps } from '../../system/interface'; export declare type AsType = 'p' | 'span'; export declare type BlockLevelTypes = 'meta' | 'label' | 'lead' | 'paragraph' | 'blockquote'; export declare type TextProps = { as?: AsType; variantStyle?: BlockLevelTypes; fontWeight?: SystemProps['fontWeight']; lineHeight?: SystemProps['lineHeight']; noOfLines?: string; truncate?: boolean; color?: SystemProps['color']; casing?: SystemProps['textTransform']; align?: SystemProps['textAlign']; }; export declare const blockLevelOptions: BlockLevelTypes[];