import { type ViewProps } from 'react-native'; import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes'; interface SvgUrlViewProps extends ViewProps { /** URL of the SVG to display */ url: string; /** Width of the SVG view */ width?: Int32; /** Height of the SVG view */ height?: Int32; /** Show skeleton shimmer until the SVG is loaded (default: true) */ showSkeleton?: boolean; /** Optional placeholder image URL to display instead of skeleton */ placeholder?: string; /** Optional placeholder to display if SVG fails to load */ failedPlaceholder?: string; } declare const _default: import("react-native/types_generated/Libraries/Utilities/codegenNativeComponent").NativeComponentType; export default _default; //# sourceMappingURL=SvgUrlViewNativeComponent.d.ts.map