import { Key } from '../Key'; import { CurrentStateType } from './CurrentStateType'; /** * Represents the current projection state. */ export declare class CurrentState { readonly type: CurrentStateType; readonly state: TProjection; readonly key: Key; /** * Creates an instance of a projections current state. * @param {CurrentStateType} type - The type of the projections current state. * @param {TProjection} state - State of the projection. * @param {Key} key - The key of the projection. * @template TProjection The type of the projection. */ constructor(type: CurrentStateType, state: TProjection, key: Key); } //# sourceMappingURL=CurrentState.d.ts.map