import { type ImageProps as NativeProps } from 'react-native';
export type ImageProps = Omit<NativeProps, 'source'> & {
    source: string;
    headers?: Record<string, string>;
};
export declare function Image({ source, headers, style, ...rest }: ImageProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map