/// <reference types="node" />
export declare enum InventoryType {
    Transaction = 1,
    Block = 2,
    Consensus = 224
}
export declare const InvalidInventoryTypeError: {
    new (inventoryType: number): {
        readonly name: string;
        readonly code: string;
        message: string;
        stack?: string | undefined;
    };
    captureStackTrace(targetObject: object, constructorOpt?: Function | undefined): void;
    prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
    stackTraceLimit: number;
};
export declare const assertInventoryType: (inventoryType: number) => InventoryType;
