import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import React from 'react'; import type { OpaqueWebviewCheckoutCartInstanceId } from '../../common/models/unique-props'; import type { WithConditionalProps } from '../../frameworks/property-binding'; import type { StandardProps } from '../../models'; export interface PreStandardizedWebViewCheckoutProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; nativeID?: string; instanceId?: OpaqueWebviewCheckoutCartInstanceId | string; } export declare type BaseWebViewCheckoutProps = WithMediaQueryInnerProps>; export declare type WebViewCheckoutProps = WithConditionalProps & WithMediaQueryStyleProps; export declare const WebViewCheckout: React.FC; export default WebViewCheckout;