import { Payload } from "./Payload"; /** * XXX: This is exported for an unit testing. * DO NOT USE THIS in your application. */ export declare const TYPE = "__ALMIN_INITIALIZED_PAYLOAD__"; /** * Initialized Payload * This is exported for an unit testing. * DO NOT USE THIS in your application. */ export declare class InitializedPayload implements Payload { type: string; } export declare const isInitializedPayload: (v: any) => v is InitializedPayload;