interface FormPinInputProps { id?: string; name?: string; label?: string; length?: number; value?: string; type?: 'text' | 'number' | 'password'; helperText?: string; errorMessage?: string; disabled?: boolean; bindData?: boolean; class?: string; onchange?: (value: string) => void; oncomplete?: (value: string) => void; } declare const FormPinInput: import("svelte").Component; type FormPinInput = ReturnType; export default FormPinInput;