import { RespOk } from "../../action/resp/RespOk"; import { IConfig } from "../../config/IConfig"; export interface Settings { "maxImageResizeWidth": number; "maxImageResizeHeight": number; } export declare class RespUploadInit extends RespOk { "uploadId": string; "settings": Settings; constructor(uploadId: string, config: IConfig); }