/** * [WHO]: InputOTP primitives backed by input-otp. * [FROM]: React, input-otp, registry/lib/utils. * [TO]: sparkdesign package consumers; Showcase; CLI registry copies. * [HERE]: registry/basic/input-otp.tsx — tokenized shadcn-derived one-time-password input primitive. * * [PROTOCOL]: * 1. Keep this P3 header in sync when the public contract changes. * 2. Update module AGENTS.md (P2) and root AGENTS.md (P1) when boundaries change. * 3. Follow design tokens and explicit type exports. */ import * as React from "react"; import { OTPInput } from "input-otp"; declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps & { containerClassName?: string; }): import("react/jsx-runtime").JSX.Element; declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & { index: number; }): import("react/jsx-runtime").JSX.Element; declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator };