interface PinInputProps { id?: string; length?: number; value?: string; label?: string; helperText?: string; status?: 'default' | 'error' | 'success'; disabled?: boolean; type?: 'text' | 'number' | 'password'; class?: string; oncomplete?: (value: string) => void; onchange?: (value: string) => void; } declare const PinInput: import("svelte").Component; type PinInput = ReturnType; export default PinInput;