import * as React from 'react'; import { ImageSourcePropType, ImageStyle, ImageURISource, StyleProp, ViewStyle } from 'react-native'; import type { ImageProps } from './types'; export type DefaultImageProps = Omit & { defaultSource: ImageSourcePropType; source: ImageURISource; defaultStyle?: StyleProp; defaultContainerStyle?: StyleProp; containerStyle?: StyleProp; FastImageComponent?: React.ComponentType; }; /** * It mainly adds the function of native component `Image` and preloading the default image. */ export declare function DefaultImage(props: DefaultImageProps): import("react/jsx-runtime").JSX.Element; export type DefaultImageProps2 = Omit & { source: ImageURISource; }; /** * The Android platform cannot display default images properly. */ export declare function DefaultImage2(props: DefaultImageProps2): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DefaultImage.d.ts.map