export default class SsrContext<StateT> {
    state?: StateT | undefined;
    dirty: boolean;
    pending: Array<Promise<void>>;
    constructor(state?: StateT | undefined);
}
