import { LocalKeystoreDefinition } from "../keymanager/interface.js"; /** * Imports keystores from un-controlled directories provided by the user. * This directories are expected to contain other files, so some filtering in done to improve UX. * @param args */ export declare function importKeystoreDefinitionsFromExternalDir(args: { keystoresPath: string[]; password: string; }): LocalKeystoreDefinition[]; export declare function readPassphraseOrPrompt(args: { importKeystoresPassword?: string; }): Promise; /** * Returns `true` if we should consider the `filename` to represent a voting keystore. */ export declare function isVotingKeystore(filename: string): boolean; //# sourceMappingURL=importExternalKeystores.d.ts.map