UNPKG

@sberdevices/plasma-temple

Version:

SberDevices CanvasApp Templates.

25 lines 691 B
import React from 'react'; import { ComponentPropsWithHeader } from '../../components/Header/types'; export interface ConfirmOrderProps extends ComponentPropsWithHeader { delivery: { details: string; amount: number; }; recipient: { name: string; phone: string; email?: string; }; address: { title: string; content: string; }; amount: number; background?: string; paymentDisabled?: boolean; onPay: () => void; onChangeRecipient: () => void; onChangeDelivery?: () => void; } export declare const ConfirmOrderPage: React.FC<ConfirmOrderProps>; //# sourceMappingURL=ConfirmOrderPage.d.ts.map