import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { placeholder: string; value?: string; label?: string; }; 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 {};