import { JSX } from 'react'; import { PolymorphicComponentPropWithRef } from '../react-types'; export type HeadingSizes = "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl"; export type HeadingProps = PolymorphicComponentPropWithRef; type HeadingComponent = (props: HeadingProps) => JSX.Element; export declare const Heading: HeadingComponent; export type MutedProps = PolymorphicComponentPropWithRef; type MutedComponent = (props: MutedProps) => JSX.Element; export declare const Muted: MutedComponent; export type IngressProps = PolymorphicComponentPropWithRef; type IngressComponent = (props: MutedProps) => JSX.Element; export declare const Ingress: IngressComponent; export type InfoProps = PolymorphicComponentPropWithRef; type InfoComponent = (props: MutedProps) => JSX.Element; export declare const Info: InfoComponent; /** * Prose */ export type ProseProps = PolymorphicComponentPropWithRef; type ProseComponent = (props: ProseProps) => JSX.Element; export declare const Prose: ProseComponent; export {};