import { NumberProp } from '../lib/extract/types'; import type { UnsafeMixed } from './codegenUtils'; import type { ViewProps } from './utils'; import { WithDefault } from 'react-native/Libraries/Types/CodegenTypes'; interface FilterPrimitiveCommonProps { x?: UnsafeMixed; y?: UnsafeMixed; width?: UnsafeMixed; height?: UnsafeMixed; result?: string; } type BlendMode = 'unknown' | 'normal' | 'multiply' | 'screen' | 'darken' | 'lighten'; export interface NativeProps extends ViewProps, FilterPrimitiveCommonProps { in1?: string; in2?: string; mode?: WithDefault; } declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType; export default _default; //# sourceMappingURL=FeBlendNativeComponent.d.ts.map