export default SecretInput; type SecretInput = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * Similar to `PasswordInput`, but it doesn’t use `type="password"` to hide the input value. Instead, * it relies on CSS to visually conceal the input to prevent password managers from prompting to save * the password. * @see https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/-webkit-text-security */ declare const SecretInput: import("svelte").Component | undefined; } & Record, {}, "value">; type Props = { /** * Input value. */ value?: string | undefined; /** * Visibility icon slot content. */ visibilityIcon?: Snippet<[]> | undefined; }; import type { TextInputProps } from '../../typedefs'; import type { InputEventHandlers } from '../../typedefs'; import type { Snippet } from 'svelte';