import type { RefObject } from 'react';
import type { View } from 'react-native';
interface Params {
    readonly imageRef: RefObject<View | null>;
    readonly isRTL: boolean;
}
declare const useOriginImageLayout: ({ imageRef, isRTL }: Params) => {
    originImageLayout: {
        x: number;
        y: number;
        width: number;
        height: number;
    };
    updateOriginImageLayout: () => void;
};
export { useOriginImageLayout };
//# sourceMappingURL=index.d.ts.map