import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; import type { ViewProps } from './utils'; import { NumberProp } from '../lib/extract/types'; import type { UnsafeMixed } from './codegenUtils'; interface FilterPrimitiveCommonProps { x?: UnsafeMixed; y?: UnsafeMixed; width?: UnsafeMixed; height?: UnsafeMixed; result?: string; } export interface NativeProps extends ViewProps, FilterPrimitiveCommonProps { nodes?: ReadonlyArray; } export default codegenNativeComponent('RNSVGFeMerge', { interfaceOnly: true, });