@betterstore/react
Version:
14 lines (13 loc) • 460 B
TypeScript
import { default as 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;
}): import("react/jsx-runtime").JSX.Element;