import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; import { type StyledProps } from "../StyledProps"; export type TextProps = React.HTMLAttributes & { variant?: ComponentVariant; inline?: boolean; compact?: boolean; disabled?: boolean; textTransform?: "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "unset" | "capitalize" | "full-size-kana" | "full-width" | "lowercase" | "uppercase" | undefined; fontSize?: string; } & StyledProps; declare const Text: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLParagraphElement>, TextProps>> & string; export default Text;