interface SecretFieldProps { value?: string; label?: string; placeholder?: string; disabled?: boolean; revealLabel?: string; hideLabel?: string; class?: string; onchange?: (value: string) => void; onreveal?: () => void; oncopy?: () => void; } declare const SecretField: import("svelte").Component; type SecretField = ReturnType; export default SecretField;