/// import { PathLike } from "fs"; import { UserPublicKey, UserSecretKey } from "./userKeys"; export declare class UserPem { label: string; secretKey: UserSecretKey; publicKey: UserPublicKey; constructor(label: string, secretKey: UserSecretKey); static fromFile(path: PathLike, index?: number): UserPem; static fromFileAll(path: PathLike): UserPem[]; static fromText(text: string, index?: number): UserPem; static fromTextAll(text: string): UserPem[]; save(path: PathLike): void; toText(): string; }