import { Ref } from "vue"; //#region src/_util/hooks/useOrientation.d.ts type Orientation = 'horizontal' | 'vertical'; declare function useOrientation(orientation?: Ref, vertical?: Ref, legacyDirection?: Ref): [Ref, Ref]; //#endregion export { Orientation, useOrientation };