/// import { TransactionType } from './kin-constants'; export declare const MAX_VERSION = 1; export declare class Memo { buffer: Buffer; constructor(buf: Buffer); static from(b: Buffer): Memo; static fromB64String(s: string, strict: boolean): Memo | undefined; static new(version: number, type: TransactionType, appIndex: number, fk: Buffer): Memo; static IsValid(m: Memo, strict?: boolean): boolean; Version(): number; TransactionType(): TransactionType; TransactionTypeRaw(): TransactionType; AppIndex(): number; ForeignKey(): Buffer; }