import React from "react"; type TextType = "headline" | "default"; type HeadlineSize = "lg" | "md" | "sm"; type DefaultSize = "lg" | "base" | "sm"; type TextSize = HeadlineSize | DefaultSize; interface TextProps { type?: TextType; size?: TextSize; as?: T; className?: string; children?: React.ReactNode; } type PolymorphicTextProps = TextProps & Omit, keyof TextProps>; export declare const Text: { ({ type, size, as, className, children, ...props }: PolymorphicTextProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=text.d.ts.map