import { HTMLAttributes } from "@builder.io/qwik"; import { type BaseTypographyProps } from "./base"; export interface TextProps extends BaseTypographyProps, Omit, "class" | "ref"> { as?: T; } export declare const Text: (props: import("@builder.io/qwik").PublicProps>, key: string | null, flags: number, dev?: import("@builder.io/qwik").DevJSX | undefined) => import("@builder.io/qwik").JSXOutput;