import { Entity } from '../base/Entity.js'; export interface SystemConfigProps { configKey: string; configValue: string; encrypted: boolean; createdAt: Date; updatedAt: Date; } export declare class SystemConfig extends Entity { get configKey(): string; get configValue(): string; get encrypted(): boolean; updateValue(value: string): void; } //# sourceMappingURL=SystemConfig.d.ts.map