///
///
///
///
import { PouchDbRef } from "../../models";
import { WithDbConnectionSource } from "../../models/with-db-connection-source.model";
import { WithCloseDbTimer } from "../../models/with-close-db-timer.model";
export interface StartRequest$Payload extends WithDbConnectionSource, WithCloseDbTimer {
readonly dbRef: PouchDbRef;
}
export declare function startRequest$(payload: StartRequest$Payload): Promise;