import { FC } from 'react'; interface DeliveryWindow { startDateUtc: string | null; endDateUtc: string | null; } interface Props { isPickup?: boolean; lowerCase?: boolean; shippingEstimate?: string; scheduled?: DeliveryWindow; } export declare const TranslateEstimate: FC; export {};