import { ImageAsset, Property, View } from '@nativescript/core'; declare module '@nativescript/core/ui/core/view' { interface ViewCommon { _addChildFromBuilder(name: string, value: any): any; } } export type Stretch = 'none' | 'fill' | 'aspectFill' | 'aspectFit'; export declare const srcProperty: Property; export declare const stretchProperty: Property; export declare class SVGView extends View { src: string; }