import type { ReactNode } from 'react'; type PaymentRuntimeBoundaryProps = { children: ReactNode; fallback?: ReactNode; }; export declare function PaymentRuntimeBoundary({ children, fallback, }: PaymentRuntimeBoundaryProps): ReactNode; export {};