import type { ComputedRef, Ref } from 'vue'; import type { IFormSchema, IFormActionType, IFormProps } from '../types'; interface UseAutoFocusContext { getSchema: ComputedRef; getProps: ComputedRef; isInitedDefault: Ref; formElRef: Ref; } export declare function useAutoFocus({ getSchema, getProps, formElRef, isInitedDefault }: UseAutoFocusContext): Promise; export {};