import { AlertDTO, MonitorDTO } from '@meshwatch/types'; import { DynamoAlertDatasource, DynamoDBClient, DynamoMonitorDatasource, DynamoUserDatasource } from '../../src'; import { UserInfo } from '../../src/user/db/types'; export declare function populateMonitors(monitorDatasource: DynamoMonitorDatasource): Promise; export declare function populateAlerts(alertDatasource: DynamoAlertDatasource): Promise; export declare function populateUserInfo(userDatasource: DynamoUserDatasource): Promise>; export declare function populateDynamoTestData(dynamoDBClient: DynamoDBClient): Promise;