export interface DBConfig {
    version: number;
    database: string;
    tableList: [
        {
            tableName: string;
            tableItems: [
                {
                    itemName: string;
                    index: boolean;
                    unique: boolean;
                }
            ];
        }
    ];
}
export declare const ZegoLoggerDBConfig: DBConfig;
