import type { Model } from "./Model"; /** * Definition for Key model * Represents {@link Domain!PrivateKey} * * @typedef {Object} KeyModel * @see Domain.Key * @see Domain.StorableKey */ export interface Key extends Model { recoveryId: string; /** * Hex encoded Key.raw */ rawHex: string; /** * Optional name */ alias?: string; index?: number; } export declare const KeySchema: import("@trust0/ridb-core").SchemaType & { required: string[]; encrypted: []; };