import { ICount } from '../interfaces/icount'; export declare type TCount = Readonly & { logged: string; }>; declare type TCountWithComputed = TCount & { computed: boolean; }; export declare type TCountWithoutLogged = Omit; export declare function isTCount(test: unknown): test is TCount; export declare function encodeICount(count: ICount): TCount; export declare function decodeICount(count: TCount): ICount; export {};