import React from "react"; import { ImageStyle, StyleProp } from "react-native"; import type { ImageItemURI } from "../../types"; interface ImageComponentProps { source: ImageItemURI; onLoad: (width: number, height: number) => void; style: StyleProp; } export declare const DefaultImageComponent: { (props: ImageComponentProps): React.JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=DefaultImageComponent.d.ts.map