import type { ReactNode } from 'react'; import EstimateCostLocales from './locales/en'; export declare const useEstimateCost: () => { locales: Record; formatNumber: (number: number, options: FormatNumberOption) => string; }; type EstimateCostProviderProps = { children: ReactNode; locales?: Record; currency?: string; numberLocales?: string; }; type FormatNumberOption = { currencyDisplay?: 'symbol' | 'code' | 'name'; unit?: string; unitDisplay?: 'long' | 'short' | 'narrow'; useGrouping?: boolean; minimumIntegerDigits?: number; minimumFractionDigits?: number; maximumFractionDigits?: number; minimumSignificantDigits?: number; maximumSignificantDigits?: number; }; export declare const EstimateCostProvider: ({ children, locales, currency, numberLocales }: EstimateCostProviderProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=EstimateCostProvider.d.ts.map