import * as input_otp from 'input-otp'; import { OTPInputProps } from 'input-otp'; import * as React from 'react'; declare const PinInputRoot: React.ForwardRefExoticComponent<(Omit, "maxLength" | "value" | "onChange" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "containerClassName" | "noScriptCSSFallback"> & { value?: string; onChange?: (newValue: string) => unknown; maxLength: number; textAlign?: "left" | "center" | "right"; onComplete?: (...args: any[]) => unknown; pushPasswordManagerStrategy?: "increase-width" | "none"; containerClassName?: string; noScriptCSSFallback?: string | null; } & { render: (props: input_otp.RenderProps) => React.ReactNode; children?: never; } & React.RefAttributes, "ref"> | Omit, "maxLength" | "value" | "onChange" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "containerClassName" | "noScriptCSSFallback"> & { value?: string; onChange?: (newValue: string) => unknown; maxLength: number; textAlign?: "left" | "center" | "right"; onComplete?: (...args: any[]) => unknown; pushPasswordManagerStrategy?: "increase-width" | "none"; containerClassName?: string; noScriptCSSFallback?: string | null; } & { render?: never; children: React.ReactNode; } & React.RefAttributes, "ref">) & React.RefAttributes>; declare const PinInputGroup: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; declare const PinInputSlot: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { index: number; } & React.RefAttributes>; declare const PinInputSeperator: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; type PinInputProps = Omit & { separatorPosition?: number; helperText?: any; }; declare const PinInput: React.FC; export { PinInput, PinInputGroup, PinInputRoot, PinInputSeperator, PinInputSlot };