///
import { IDatabaseEncoding } from '../../../../storage';
export interface AccountValue {
version: number;
id: string;
name: string;
spendingKey: string;
incomingViewKey: string;
outgoingViewKey: string;
publicAddress: string;
}
export declare class AccountValueEncoding implements IDatabaseEncoding {
serialize(value: AccountValue): Buffer;
deserialize(buffer: Buffer): AccountValue;
getSize(value: AccountValue): number;
}
//# sourceMappingURL=AccountValue.d.ts.map