import type { HostComponent, ViewProps } from 'react-native'; /** * Mandatory initialization values for Taboola plugin view. * * @param unitId Unique identifier for the Taboola unit * @param pageId Unique identifier for the Taboola page * * These values are crucial for linking with the programmatically unit and page to the specific view, ensuring correct content rendering . */ interface NativeProps extends ViewProps { initValues: { unitId: string; pageId: string; }; } declare const _default: HostComponent; export default _default; //# sourceMappingURL=TBLRNTPluginViewNativeComponent.d.ts.map