import { IDataSourceHandler, IDbDataSource, ServiceContext } from '../../../types'; /** * 数据库数据源处理器 */ export declare class DbDataSourceHandler implements IDataSourceHandler { fetchData(dataSource: IDbDataSource, context: ServiceContext): Promise; }