import { n as BarcodeArAnnotationAnchor } from "../../../../BarcodeArAnnotation-nsUjxSNs.js";
import { Direction } from "@scandit/web-datacapture-core";

//#region src/main/ar/ui/organisms/private/AnchorAndDirectionUtils.d.ts
declare const isDirectionHorizontal: (direction: Direction | undefined) => boolean;
declare const isDirectionVertical: (direction: Direction | undefined) => boolean;
declare const isAnchorYcenter: (anchor: BarcodeArAnnotationAnchor) => boolean;
declare const isAnchorXcenter: (anchor: BarcodeArAnnotationAnchor) => boolean;
//#endregion
export { isAnchorXcenter, isAnchorYcenter, isDirectionHorizontal, isDirectionVertical };