import { ErrorContentType } from "../../types/responseTypes.js"; declare class Response { #private; constructor(source?: any); success(content: {}): this; error(content: ErrorContentType): this; get result(): { success: boolean; content: Record; errorContent: ErrorContentType; source: { title?: string; message?: string; method?: string; requester?: Record | string; status: string | number | unknown; }; }; } export { Response }; //# sourceMappingURL=response.d.ts.map