import { Progress, RestApiResponse } from '../types'; export declare type Database = { deleteIncompleteJobsAsync: () => Promise; getJobStatusAsync: (type: string, id: string) => Promise; setJobStatusToQueuedAsync: (type: string, id: string) => Promise; setJobStatusToInProgressAsync: (type: string, id: string, progress: Progress) => Promise; setJobStatusToDoneAsync: (type: string, id: string) => Promise; }; export declare function createDatabase(directoryPath: string): Database; //# sourceMappingURL=create-database.d.ts.map