import { Ref } from 'vue'; /** * Performs manual autofocus on the target, when the component is mounted and not loading anymore. * Autofocus will not be performed if any other input element is already focused or the target * element is not visible. * * @param ref The ref of the target element. * @param props The reactive props of the component. * @returns */ export declare const useAutofocus: (ref: Ref, props: { autofocus: boolean; loading?: boolean; }) => void;