import type { InjectionKey, Ref } from 'vue'; import type { OtpSlotData } from './useOtpInput.js'; export interface VOtpInputContext { otpSlots: Readonly>; isFocused: Ref; focusAll: Ref; divider: Ref; merged: Ref; focusAt: (index: number) => void; } export declare const VOtpInputSymbol: InjectionKey;