import { codegenNativeComponent, type CodegenTypes, type HostComponent, type ViewProps, } from "react-native"; type NativeDEMEncoding = "mapbox" | "terrarium"; export interface NativeProps extends ViewProps { id: string; url?: string; tiles?: string[]; tileSize?: CodegenTypes.WithDefault; minzoom?: CodegenTypes.WithDefault; maxzoom?: CodegenTypes.WithDefault; attribution?: string; encoding?: CodegenTypes.WithDefault; } export default codegenNativeComponent( "MLRNRasterDEMSource", ) as HostComponent;