/// import { StandardProps, StandardAugmentedRealityProps } from "./propTypes"; declare type AugmentedRealityHitTestProps = StandardProps & StandardAugmentedRealityProps & { showTarget?: boolean; targetImageUrl?: string; onHitTestSelect?: (matrix: Float32Array) => void; }; declare const AugmentedRealityHitTest: (props: AugmentedRealityHitTestProps) => JSX.Element; export default AugmentedRealityHitTest;