import type SealiousError from "./errors.js"; export declare class Response { status: "error" | "success"; type: string; status_message: string; data: any; constructor(data: any, is_error: boolean, type: string, status_message: string); static fromError(sealious_error: SealiousError): { data: Record; is_error: boolean; type: string; status_message: string; message: string; }; }