import type { ColorValue } from 'react-native'; import type { Float, Int32, WithDefault } from 'react-native/Libraries/Types/CodegenTypes'; import type { NumberProp } from '../lib/extract/types'; import type { UnsafeMixed } from './codegenUtils'; import type { ViewProps } from './utils'; interface FilterPrimitiveCommonProps { x?: UnsafeMixed; y?: UnsafeMixed; width?: UnsafeMixed; height?: UnsafeMixed; result?: string; } type ColorStruct = Readonly<{ type?: WithDefault; payload?: ColorValue; brushRef?: string; }>; export interface NativeProps extends ViewProps, FilterPrimitiveCommonProps { floodColor?: UnsafeMixed; floodOpacity?: WithDefault; } declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType; export default _default; //# sourceMappingURL=FeFloodNativeComponent.d.ts.map