import { Storage } from "../../storage"; export interface RawOptions { filepath: string; } /** * Storage the data as a json file */ export declare class Raw implements Storage { private options; constructor(options: RawOptions); append(dataList: any[]): Promise; }