/// <reference types="node" />
import { CodeSecret } from "../api/Commands/InitPasswordsCommand";
import { AdminType } from "./AdminType";
export declare type PrivateDataType = {
    aesKey?: Buffer;
    admin?: AdminType;
    adminPasscode?: string;
    pwdInfo?: CodeSecret[];
};
