import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { value?: string | undefined; placeholder?: string | undefined; disabled?: boolean | undefined; show?: boolean | undefined; name?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type InputPasswordProps = typeof __propDef.props; export declare type InputPasswordEvents = typeof __propDef.events; export declare type InputPasswordSlots = typeof __propDef.slots; export default class InputPassword extends SvelteComponentTyped { } export {};