import React from "react";
import { ImageSourcePropType } from "react-native";
import { SvgProps } from "react-native-svg";
import { AdditionalProps } from "react-native-svg/lib/typescript/xml";
export type SvgUriProps = SvgProps & AdditionalProps & {
    source?: ImageSourcePropType | null;
    xml?: string | null;
    loading?: React.JSX.Element;
};
declare const SvgUri: (props: SvgUriProps) => any;
export default SvgUri;
//# sourceMappingURL=index.d.ts.map