import { ValidatorSecretKey } from "../wallet/validatorKeys"; export declare class ValidatorPEM { readonly label: string; readonly secretKey: ValidatorSecretKey; constructor(label: string, secretKey: ValidatorSecretKey); static fromFile(path: string, index?: number): Promise; static fromFileAll(path: string): Promise; static fromText(text: string, index?: number): Promise; static fromTextAll(text: string): Promise; save(path: string): void; toText(): string; }