import type { KeyringPasswordJson } from '@subwallet/keyring/types'; import type { PasswordStore } from '@subwallet/ui-keyring/types'; export default class KeyringStore implements PasswordStore { get(update: (value: KeyringPasswordJson) => void): void; remove(update?: () => void): void; set(value: KeyringPasswordJson, update?: () => void): void; }