import { type SvEditorProps } from './editor-contract'; type Props = Pick & { value?: string; onChange?: (value: string) => void; /** Fired once every cell is filled. */ onComplete?: (value: string) => void; length?: number; /** Digits only (default) vs any character. */ numeric?: boolean; /** Mask the characters (password dots). */ mask?: boolean; autofocus?: boolean; }; declare const SvOtpInput: import("svelte").Component; type SvOtpInput = ReturnType; export default SvOtpInput;