import { codegenNativeComponent, type CodegenTypes, type HostComponent, type ViewProps, } from "react-native"; type NativeScheme = "xyz" | "tms"; export interface NativeProps extends ViewProps { id: string; url?: string; tiles?: string[]; tileSize?: CodegenTypes.WithDefault; minzoom?: CodegenTypes.WithDefault; maxzoom?: CodegenTypes.WithDefault; attribution?: string; scheme?: CodegenTypes.WithDefault; } export default codegenNativeComponent( "MLRNRasterSource", ) as HostComponent;