import React from 'react'; import { SearchFormProps } from '../searchForm'; export declare type PriceSimulatorProps = Readonly<{ title: string; illustration?: JSX.Element | null; terms?: JSX.Element | string | null; children: React.ReactElement; }>; export declare const PriceSimulator: ({ title, illustration, terms, children }: PriceSimulatorProps) => JSX.Element;