import BN from 'bn.js'; import { DeserializeWireBaseOptions } from '../Serializable'; import { LogAction } from './LogAction'; import { NotificationAction } from './NotificationAction'; export interface ActionsKey { readonly indexStart?: BN; readonly indexStop?: BN; } export interface ActionKey { readonly index: BN; } export declare type Action = LogAction | NotificationAction; export declare const deserializeActionWireBase: (options: DeserializeWireBaseOptions) => Action; export declare const deserializeActionWire: import("../Serializable").DeserializeWire;