import { DataSourceType } from '@kottster/common'; interface Options { skipFileGeneration?: boolean; skipInstall?: boolean; data?: string; name?: string; } export declare function addDataSource(dataSourceType: DataSourceType, options: Options): Promise; export {};