import { CSSProperties } from "react"; export type SegmentHeaderProps = { title: string; style?: CSSProperties; hideStyledHr?: boolean; }; export default function SegmentHeader(props: SegmentHeaderProps): JSX.Element;