/**
 * Robotlegs object lifecycle state
 */
export declare class LifecycleState {
    static UNINITIALIZED: string;
    static INITIALIZING: string;
    static ACTIVE: string;
    static SUSPENDING: string;
    static SUSPENDED: string;
    static RESUMING: string;
    static DESTROYING: string;
    static DESTROYED: string;
}
