import { TKeyType } from '@verixyz/core'; import { BaseEntity } from 'typeorm'; export declare type KeyType = TKeyType; export declare class PrivateKey extends BaseEntity { alias: string; type: KeyType; privateKeyHex: string; } //# sourceMappingURL=private-key.d.ts.map