import * as React from 'react'; interface SectionTitleProps { /** Uppercase section label shown on the left. */ title: string; /** Trailing slot — e.g. a countdown, refresh button, or loading spinner. */ rightElement?: React.ReactNode; /** Extra classes merged onto the outer row. */ className?: string; } /** * Section header used above the cards on the home screen — a muted, * uppercase label on the left with an optional trailing slot on the right * (countdown, refresh icon, activity indicator, etc.). * * Purely presentational: the consumer formats the label and supplies the * trailing node. Does not render the card body that follows it. */ declare function SectionTitle({ title, rightElement, className }: SectionTitleProps): import("react/jsx-runtime").JSX.Element; export { SectionTitle }; export type { SectionTitleProps }; //# sourceMappingURL=section-title.d.ts.map