import { PropsWithChildren } from 'react'; export interface Props { title: string; titleHidden?: boolean; } export declare function MoneyLines({ children, title, titleHidden, }: PropsWithChildren): JSX.Element;