import { Base, Id } from '../BaseEntity'; export declare type ConfigType = 'GLOBAL' | 'USER' | 'TENANT'; export declare class KvConfig extends Base { key: string; value: string; type: ConfigType; desc: string; userId: Id; tenantId: Id; constructor(props?: Partial); }