import { Payload } from "./Payload"; /** * XXX: This is exported for an unit testing. * DO NOT USE THIS in your application. */ export declare const TYPE = "__ALMIN_BEGAN_OF_TRANSACTION__"; /** * TransactionBeganPayload is begin of transaction */ export declare class TransactionBeganPayload implements Payload { type: string; name: string; constructor(name: string); } export declare function isTransactionBeganPayload(v: Payload): v is TransactionBeganPayload;