@betterstore/react
Version:
E-commerce for Developers
14 lines (13 loc) • 423 B
TypeScript
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;