import { ExtractPropTypes, Ref } from 'vue'; export declare const useFocusableProps: { /** Focus element when mounted */ autofocus: { type: BooleanConstructor; default: boolean; }; }; export declare const useFocusable: (el: Ref, props: ExtractPropTypes) => { focus: () => void; blur: () => void; };