import { default as React } from 'react'; import { SIZES_MAPPER, TEXT_WEIGHT_MAPPER, VARIANT_MAPPER } from '../../constants/constant'; type TextElement = 'span' | 'p' | 'strong' | 'em' | 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; export type TextProps = { className?: string; children: React.ReactNode; element: TextElement; weight: keyof typeof TEXT_WEIGHT_MAPPER; variant: keyof typeof VARIANT_MAPPER; size?: keyof typeof SIZES_MAPPER; } & React.ComponentProps; export declare const Text: ({ className, children, element, weight, variant, size, ...props }: TextProps) => React.JSX.Element; export default Text; //# sourceMappingURL=Text.d.ts.map