import { JSX } from 'react/jsx-runtime'; import * as React from "react"; declare const SIZE_VARIANTS: { "header-xs": string; "header-sm": string; "header-md": string; "header-lg": string; "header-xl": string; "header-xxl": string; "text-xs": string; "text-sm": string; "text-md": string; "text-lg": string; }; declare const COLOR_VARIANTS: { normal: string; secondary: string; accent: string; success: string; info: string; warning: string; danger: string; inherit: string; }; export type TextVariantSize = keyof typeof SIZE_VARIANTS; export type TextVariantColor = keyof typeof COLOR_VARIANTS; export type TextVariant = `${TextVariantSize}/${TextVariantColor}`; type TextTag = "div" | "span" | "label" | "p"; export type TextProps = React.ComponentPropsWithoutRef & { tag?: Tag; variant?: TextVariant; lineClamp?: 1; className?: string; id?: string; children: React.ReactNode; }; export declare function Text(props: TextProps): JSX.Element; export interface HeaderProps { tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; variant?: TextVariant; lineClamp?: 1; uppercase?: boolean; withMargin?: boolean; className?: string; id?: string; children: React.ReactNode; } export declare function Header(props: HeaderProps): JSX.Element; export {}; //# sourceMappingURL=Text.d.ts.map