import { default as React } from 'react'; import { TooltipProps } from '../../Tooltip/Tooltip'; export type SectionHeaderProps = { /** Title of the section */ title: string; /** Optional JSX that appears in the right side of the component */ rightDisplay?: React.ReactNode; /** Optional tooltip that appears next to the title */ tooltip?: Omit; /** Optional prop to add a test id to the SectionHeader for QA testing */ qaTestId?: string; }; declare const SectionHeader: ({ title, rightDisplay, tooltip, qaTestId, }: SectionHeaderProps) => React.JSX.Element; export default SectionHeader;