import type { DrawerDirection } from "vaul-vue";
import { type ComputedRef } from "vue";
declare const useProvideDrawer: (position: ComputedRef<DrawerDirection>) => {
    position: ComputedRef<DrawerDirection>;
};
declare function useDrawer(): {
    position: ComputedRef<DrawerDirection>;
};
export { useDrawer, useProvideDrawer };
