export declare enum SystemLogType {
    Info = 1,
    Warning = 2,
    Error = 4,
    Critical = 8
}
export declare class GsbSystemLog {
    _entDefName?: string;
    id?: string;
    dto?: string;
    createDate?: Date;
    type?: SystemLogType;
    message?: string;
    title?: string;
    operation?: string;
    exception?: string;
    constructor(obj?: Partial<GsbSystemLog>);
}
