import { type PropsOf } from "@qwik.dev/core"; type PublicOtpNativeInputProps = PropsOf<"input"> & { pattern?: string | null; }; /** Hidden input component that handles OTP input interactions and validation */ export declare const OtpField: import("@qwik.dev/core").Component; export {};