/** * Povery Error is an error with a status code as the second argument. */ export declare class PoveryError extends Error { statusCode: number; errorData?: any | undefined; constructor(message: string, statusCode: number, errorData?: any | undefined); }