import { BaseState } from './base-state';
import { StateFactory } from './interface';
/**
 * Represents a resource state in the HAL format
 */
export declare class CjState<T = any> extends BaseState<T> {
    serializeBody(): string;
}
/**
 * Turns a HTTP response into a CjState
 */
export declare const factory: StateFactory;
