import type { StyleProp, ViewStyle } from 'react-native'; export type OnLoadEventPayload = { url: string; }; export type QueMobileSdkModuleEvents = { onChange: (params: ChangeEventPayload) => void; }; export type ChangeEventPayload = { value: string; }; export type QueMobileSdkViewProps = { url: string; onLoad: (event: { nativeEvent: OnLoadEventPayload; }) => void; style?: StyleProp; }; //# sourceMappingURL=QueMobileSdk.types.d.ts.map