export declare class State { readonly value: T | undefined; readonly at: Date; constructor(value: T | undefined, at?: Date); isEmpty(): boolean; }