import React from "react"; import { type ComposableProps } from "../../../lib/slot"; export type TypographyVariant = 'title-primary' | 'title-secondary' | 'display-primary' | 'button' | 'body-primary-semibold' | 'body-primary-medium' | 'body-primary-italic' | 'body-primary-regular' | 'body-secondary-semibold' | 'body-secondary-medium' | 'body-secondary-regular'; export type TypographyColor = 'primary' | 'secondary' | 'tertiary' | 'muted' | 'danger' | 'success' | 'warning'; export interface TypographyProps extends Omit, 'as'> { variant?: TypographyVariant; color?: TypographyColor; as?: keyof JSX.IntrinsicElements; children: React.ReactNode; } export declare const Typography: React.ForwardRefExoticComponent>; //# sourceMappingURL=Typography.d.ts.map