import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; export declare enum ShippedSuiteType { Shield = 0, Green = 1, GreenAndShield = 2 } export declare enum ShippedSuiteAppearance { Auto = 0, Light = 1, Dark = 2 } export type ShippedSuiteConfiguration = { type?: ShippedSuiteType; isInformational?: boolean; isMandatory?: boolean; isRespectServer?: boolean; currency?: string; appearance?: ShippedSuiteAppearance; }; export interface WidgetViewProps { style?: StyleProp; ref?: any; configuration: ShippedSuiteConfiguration; onChange: (values: any) => void; } export type WidgetViewMethods = { updateOrderValue: (amount: string) => void; }; export interface WidgetChangeEventData { isSelected: boolean; totalFee?: string; error?: string; } export declare const WidgetView: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=WidgetView.d.ts.map