import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { strength?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type StyledPasswordStrengthProps = typeof __propDef.props; export declare type StyledPasswordStrengthEvents = typeof __propDef.events; export declare type StyledPasswordStrengthSlots = typeof __propDef.slots; export default class StyledPasswordStrength extends SvelteComponentTyped { } export {};