import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { value: string; setDisableButton: Function; }; events: { click: MouseEvent; keydown: KeyboardEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type PasswordStrengthIndicatorProps = typeof __propDef.props; export declare type PasswordStrengthIndicatorEvents = typeof __propDef.events; export declare type PasswordStrengthIndicatorSlots = typeof __propDef.slots; export default class PasswordStrengthIndicator extends SvelteComponentTyped { } export {};