import { KeepHeadingLevel } from "../../Keep/KeepTheme"; import type { ComponentProps, FC, PropsWithChildren } from "react"; export type StepTitleProps = PropsWithChildren & { className?: string; as?: KeepHeadingLevel; }>; export declare const StepTitle: FC;