import type { HostComponent, ViewProps } from 'react-native'; import { Double, Int32 } from 'react-native/Libraries/Types/CodegenTypes'; import type { FilterExpression } from '../utils/MapboxStyles'; import type { UnsafeMixed } from './codegenUtils'; type OptionalProp = UnsafeMixed; type Slot = 'bottom' | 'middle' | 'top'; type CommonProps = { sourceID?: OptionalProp; existing?: OptionalProp; filter?: UnsafeMixed; aboveLayerID?: OptionalProp; belowLayerID?: OptionalProp; layerIndex?: OptionalProp; maxZoomLevel?: OptionalProp; minZoomLevel?: OptionalProp; sourceLayerID?: OptionalProp; slot?: OptionalProp; }; export interface NativeProps extends ViewProps, CommonProps { id?: OptionalProp; reactStyle: UnsafeMixed; } declare const _default: HostComponent; export default _default; //# sourceMappingURL=RNMBXCircleLayerNativeComponent.d.ts.map