import { Directive } from 'vue';
/**
* Vue directive that locks keyboard focus within the bound element.
*
* ! Be careful to always allow the user to escape the focus trap as this directive does not handle that.
*
* @example
* ```vue
*
*
*
*
*
* ```
*/
declare const vLockFocus: Directive;
export default vLockFocus;