import React, { PropsWithChildren } from 'react'; type CostOverviewHeaderProps = { title: string; subtitle?: string; }; export declare const CostOverviewHeader: ({ title, subtitle, children, }: PropsWithChildren) => React.JSX.Element; export {};