import { KeyValue } from "../interfaces/KeyValue"; import { MediaObject } from "./Media"; export declare interface Response { data: any[]; count: number; url: string; title: string; message: string; success: boolean; exception: KeyValue[]; errors: string; error: string; media: MediaObject; mediaJson: string; process(autoHide: number): void; } export declare class Response { constructor(); static process(data: Response | any, autoHide?: number): void; }