import { ReactNode, Ref, ComponentPropsWithoutRef } from 'react'; interface SectionTitleOwnProps { /** Title content (typically a short uppercase section label). */ children?: ReactNode; /** Extra classes for the section title root. */ className?: string; /** Forwarded to the underlying `
`. */ ref?: Ref; } export type SectionTitleProps = SectionTitleOwnProps & Omit, keyof SectionTitleOwnProps>; /** Shape of `SectionTitle` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type SectionTitleDefaultProps = Partial>; export declare const SectionTitle: (props: SectionTitleProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SectionTitle.d.ts.map