import { type eventInterface } from "../typings/interfaces/event.interface"; import { type configInterface } from "../typings/config.interface"; type RecursivePartial = { [P in keyof T]?: RecursivePartial; }; export default class Errors { static PREFIX: string; static SUFFIX: string; static readonly MISSING_ID_WARNING: string; static readonly MISSING_TITLE_WARNING: string; static readonly MISSING_TIME_WARNING: string; static readonly MISSING_TIME_START_WARNING: string; static readonly MISSING_TIME_END_WARNING: string; static checkEventProperties(event: RecursivePartial): void; static checkConfig(config: configInterface): void; } export {};