import type { TitleType, DescType } from './types'; import type { SVGAttributes } from 'svelte/elements'; interface Props extends SVGAttributes { color1?: string; color2?: string; color3?: string; color4?: string; color5?: string; color6?: string; ariaLabel?: string; class?: string; height?: string; title?: TitleType; desc?: DescType; } declare const PasswordLockKey: import("svelte").Component; type PasswordLockKey = ReturnType; export default PasswordLockKey;