import { CEntity, EntityUI } from "../CVEntity"; import { History } from "../../entities"; import { VHistoryMain } from "./vHistoryMain"; export interface HistoryUI extends EntityUI { CHistory?: typeof CHistory; main: typeof VHistoryMain; } export declare class CHistory extends CEntity { protected internalStart(): Promise; protected readonly VHistoryMain: typeof VHistoryMain; }