import React from "react";
declare global {
    interface Window {
        Packeta: any;
    }
}
export default function ZasilkovnaShippingOption({ children, onPickupPointSelected, locale, countryCode, apiKey, }: {
    children: React.ReactNode;
    onPickupPointSelected?: (pickupPointId: string, pickupPointName: string) => void;
    locale?: string;
    countryCode?: string;
    apiKey?: string;
}): React.JSX.Element;
