export declare const AppState: {
    readonly STARTING: "starting";
    readonly RUNNING: "running";
    readonly SHUTTINGDOWN: "shuttingdown";
};
export type AppState = (typeof AppState)[keyof typeof AppState];
//# sourceMappingURL=state.d.ts.map