import { Base } from '../BaseEntity'; export declare type ValueType = 'STRING' | 'LONG' | 'FLOAT' | 'BOOLEAN'; export declare class KVEntity extends Base { entityType: string; entityId: string; key: string; ts: string; get day(): string; bool_v: boolean; str_v: string; long_v: number; dbl_v: number; constructor(props?: Partial); } export declare class KV extends Base { key: T; type: ValueType; value: any; ts: number | string; get day(): string; get formattedTs(): string; constructor(props?: Partial); } export declare type AGG = 'MIN' | 'MAX' | 'AVG' | 'SUM' | 'COUNT' | 'NONE';