import * as React from "react";
export interface TextProps extends Omit<React.HTMLAttributes<HTMLElement>, "color"> {
    children: React.ReactNode;
    variant?: "display" | "heading" | "body" | "caption";
    size?: "2xlarge" | "xlarge" | "large" | "medium" | "small" | "xsmall";
    weight?: "regular" | "medium" | "semibold";
    color?: "default" | "subtle" | "muted" | "disabled" | "primary" | "onPrimary" | "positive" | "negative" | "notice" | "info" | "neutral";
    as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span" | "div" | "label";
    className?: string;
}
declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLElement>>;
export { Text };
//# sourceMappingURL=Text.d.ts.map