import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; import type { BubblingEventHandler, Double } from 'react-native/Libraries/Types/CodegenTypes'; import type { HostComponent, ViewProps } from 'react-native'; export interface NativeProps extends ViewProps { onDidSetViewID: BubblingEventHandler<{}>; currentFilters: string; backgroundLayerSamplingSizeScale?: Double; }; // stubs export default codegenNativeComponent('RNIVisualEffectCustomFilterView', { excludedPlatforms: ['android'], interfaceOnly: true, }) as HostComponent;