/// <reference types="react" />
import { ExtractProps } from '@bem-react/core';
export * from '../Text';
export declare type TextWeightValue = 'light' | 'regular' | 'medium' | 'bold';
export declare const Text: import("react").StatelessComponent<{
    as?: "symbol" | "object" | "big" | "link" | "small" | "sub" | "sup" | import("react").ComponentClass<any, any> | import("react").FunctionComponent<any> | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "style" | "summary" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | undefined;
    children?: import("react").ReactNode;
    className?: string | undefined;
    align?: "center" | "end" | "start" | "justify" | undefined;
    overflow?: "ellipsis" | "fade" | "fade-horizontal" | undefined;
    maxLines?: number | undefined;
    style?: import("react").CSSProperties | undefined;
    color?: "link" | "brand" | "inverse" | "primary" | "promo" | "secondary" | "ghost" | "control-primary" | "alert" | "warning" | "disable" | "success" | "control-secondary" | "control-passive" | "control-ghost" | "control-faint" | "control-disable" | "control-link" | "control-error" | "link-external" | "link-minor" | "link-hover" | undefined;
    typography?: "display-xl" | "display-l" | "display-m" | "display-s" | "headline-xl" | "headline-l" | "headline-s" | "headline-xs" | "headline-m" | "subheader-xl" | "subheader-l" | "subheader-m" | "subheader-s" | "body-short-xl" | "body-short-l" | "body-short-m" | "body-short-s" | "body-long-xl" | "body-long-l" | "body-long-m" | "body-long-s" | "caption-xl" | "caption-l" | "caption-m" | "overline-l" | "overline-m" | "overline-s" | "control-xxs" | "control-xs" | "control-s" | "control-l" | "control-xl" | "control-m" | "control-xxl" | undefined;
} & {} & {
    typography?: "display-xl" | "display-l" | "display-m" | "display-s" | "headline-xl" | "headline-l" | "headline-s" | "headline-xs" | "headline-m" | "subheader-xl" | "subheader-l" | "subheader-m" | "subheader-s" | "body-short-xl" | "body-short-l" | "body-short-m" | "body-short-s" | "body-long-xl" | "body-long-l" | "body-long-m" | "body-long-s" | "caption-xl" | "caption-l" | "caption-m" | "overline-l" | "overline-m" | "overline-s" | "control-xxs" | "control-xs" | "control-s" | "control-l" | "control-xl" | "control-m" | "control-xxl" | undefined;
} & {
    weight?: "bold" | "medium" | "light" | "regular" | undefined;
}>;
export declare type TextProps = ExtractProps<typeof Text>;
