/**
 * Representation of the 'DetailsErrorResponse' schema.
 */
export type DetailsErrorResponse = {
    /**
     * Descriptive error code (not http status code)
     */
    code?: string;
    /**
     * Plaintext error description
     */
    message?: string;
} & Record<string, any>;
//# sourceMappingURL=details-error-response.d.ts.map