import type { ThemeBaseSize, ThemeSemanticColor } from "../theme.types"; export interface OtpInputProps extends React.ComponentPropsWithoutRef<"div"> { /** * 输入数字个数 * @default 6 */ digits?: number; /** 主题的语义化尺寸 */ size?: ThemeBaseSize; /** 主题的语义化颜色 */ color?: ThemeSemanticColor; } export declare function OtpInput(props: OtpInputProps): import("react").JSX.Element;